From 3c84f4c301d77575dd556b368459ae5ca222f9c0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 6 Jan 2020 17:09:14 +0200 Subject: [PATCH] Add -DBOOST_INCLUDE_LIBRARIES=assert, otherwise test dependencies for Core are required --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 241a3b7..9e95c42 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_VERBOSE=1 .. + - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=assert .. - ctest --output-on-failure -R boost_assert - os: linux diff --git a/appveyor.yml b/appveyor.yml index 8ecc87f..2f5defe 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_VERBOSE=1 .. + - if not "%CMAKE%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=assert .. - 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