Skip to content

Commit 3b5f66b

Browse files
committed
Remove 'VERBOSE' build mode
1 parent 0573b67 commit 3b5f66b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ build_script:
2828
- mkdir -p build && cd build
2929
- set BOOST_DIR=C:\Libraries\boost_1_65_1
3030
- cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DMSVC_RUNTIME_TYPE="/MT"
31-
- cmake --build . --target all -- VERBOSE=1
31+
- cmake --build . --target all
3232

3333
test_script:
3434
# - .\jinja2cpp_tests

cmake/build_thirdparty.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ macro (BuildThirdparty TargetName ThirdpartySrcPath ThirdpartyOutFile)
1717

1818
add_custom_command (
1919
OUTPUT ${INST_DIR}/${ThirdpartyOutFile}
20-
COMMAND ${CMAKE_COMMAND} ARGS --build . --target install -- VERBOSE=1
20+
COMMAND ${CMAKE_COMMAND} ARGS --build . --target install
2121
WORKING_DIRECTORY ${BUILD_DIR}
2222
COMMENT "Build ${TargetName} library"
2323
DEPENDS ${BUILD_DIR}/CMakeCache.txt

0 commit comments

Comments
 (0)