Skip to content

Commit 028dd3a

Browse files
committed
refactor: remove verbose flag from build command in CMakeLists.txt
1 parent 4b4c16e commit 028dd3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/unit/custom-section/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ExternalProject_Add(
1515
CONFIGURE_COMMAND ${CMAKE_COMMAND} -S ${CMAKE_CURRENT_SOURCE_DIR}/wasm-apps -B build
1616
-DWASI_SDK_PREFIX=${WASI_SDK_DIR}
1717
-DCMAKE_TOOLCHAIN_FILE=${WASISDK_TOOLCHAIN}
18-
BUILD_COMMAND ${CMAKE_COMMAND} --build build --verbose
18+
BUILD_COMMAND ${CMAKE_COMMAND} --build build
1919
INSTALL_COMMAND ${CMAKE_COMMAND} --install build --prefix ${CMAKE_CURRENT_BINARY_DIR}/wasm-apps
2020
)
2121

tests/unit/running-modes/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ExternalProject_Add(
1616
CONFIGURE_COMMAND ${CMAKE_COMMAND} -S ${CMAKE_CURRENT_SOURCE_DIR}/wasm-apps -B build
1717
-DWASI_SDK_PREFIX=${WASI_SDK_DIR}
1818
-DCMAKE_TOOLCHAIN_FILE=${WASISDK_TOOLCHAIN}
19-
BUILD_COMMAND ${CMAKE_COMMAND} --build build --verbose
19+
BUILD_COMMAND ${CMAKE_COMMAND} --build build
2020
INSTALL_COMMAND ${CMAKE_COMMAND} --install build --prefix ${CMAKE_CURRENT_BINARY_DIR}
2121
)
2222

0 commit comments

Comments
 (0)