From 19329d333508067e9986f15addfb6f57c4f85eaa Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 30 Dec 2019 17:15:43 +0200 Subject: [PATCH] Use Boost_VERBOSE instead of Boost_DEBUG --- .travis.yml | 4 ++-- appveyor.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b692edb..241a3b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -289,7 +289,7 @@ matrix: env: CMAKE=1 script: - mkdir __build__ && cd __build__ - - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_DEBUG=1 .. + - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 .. - ctest --output-on-failure -R boost_assert - os: linux @@ -307,7 +307,7 @@ matrix: env: CMAKE_INSTALL=1 script: - mkdir __build__ && cd __build__ - - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_DEBUG=1 -DBOOST_INCLUDE_LIBRARIES="assert;config" -DCMAKE_INSTALL_PREFIX=~/.local .. + - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES="assert;config" -DCMAKE_INSTALL_PREFIX=~/.local .. - cmake --build . --target install - cd ../libs/assert/test/cmake_install_test && mkdir __build__ && cd __build__ - cmake -DCMAKE_INSTALL_PREFIX=~/.local .. diff --git a/appveyor.yml b/appveyor.yml index a6c827e..8ecc87f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -57,7 +57,7 @@ test_script: - if "%CMAKE%%CMAKE_SUBDIR%%CMAKE_INSTALL%" == "" b2 -j 3 libs/assert/test toolset=%TOOLSET% %CXXSTD% - if not "%CMAKE%" == "" mkdir __build__ && cd __build__ - - if not "%CMAKE%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_DEBUG=1 .. + - if not "%CMAKE%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 .. - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C Debug - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C Release - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C MinSizeRel @@ -71,7 +71,7 @@ test_script: - if not "%CMAKE_SUBDIR%" == "" cmake --build . --config RelWithDebInfo && cmake --build . --target check --config RelWithDebInfo - if not "%CMAKE_INSTALL%" == "" mkdir __build__ && cd __build__ - - if not "%CMAKE_INSTALL%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_DEBUG=1 -DBOOST_INCLUDE_LIBRARIES="assert;config" -DCMAKE_INSTALL_PREFIX=C:/cmake-prefix .. + - if not "%CMAKE_INSTALL%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES="assert;config" -DCMAKE_INSTALL_PREFIX=C:/cmake-prefix .. - if not "%CMAKE_INSTALL%" == "" cmake --build . --target install --config Debug - if not "%CMAKE_INSTALL%" == "" cmake --build . --target install --config Release - if not "%CMAKE_INSTALL%" == "" cd ../libs/assert/test/cmake_install_test && mkdir __build__ && cd __build__