From 5ebf2cb2be09c3cbde9eb4af7477e13c25b9bf57 Mon Sep 17 00:00:00 2001 From: Flamefire Date: Wed, 25 Dec 2019 15:59:31 +0100 Subject: [PATCH] Disable installation for superbuild static_assert and smart_ptr are missing installation targets --- .github/workflows/ci_tests.yml | 4 ++-- appveyor.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 52f7425..447e041 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -84,13 +84,13 @@ jobs: run: mkdir __build_static __build_shared - name: Configure static working-directory: __build_static - run: cmake .. -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide -DCMAKE_BUILD_TYPE=Debug + run: cmake .. -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide -DCMAKE_BUILD_TYPE=Debug -DBOOST_NOWIDE_INSTALL=OFF - name: Build & Test static working-directory: __build_static run: cmake --build . --config Debug && ctest --output-on-failure --build-config Debug - name: Configure shared working-directory: __build_shared - run: cmake .. -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=ON + run: cmake .. -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=ON -DBOOST_NOWIDE_INSTALL=OFF - name: Build & Test shared working-directory: __build_shared run: cmake --build . --config Debug && ctest --output-on-failure --build-config Debug diff --git a/appveyor.yml b/appveyor.yml index ea9e7f0..15099b0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -87,7 +87,7 @@ test_script: ./b2 --clean mkdir __build_static | cd - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide .. + cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES=nowide -DBOOST_NOWIDE_INSTALL=OFF .. cmake --build . --config Debug ctest --output-on-failure --build-config Debug cmake --build . --config Release @@ -96,7 +96,7 @@ test_script: cd .. mkdir __build_shared | cd - cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBUILD_SHARED_LIBS=ON -DBOOST_INCLUDE_LIBRARIES=nowide .. + cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBUILD_SHARED_LIBS=ON -DBOOST_INCLUDE_LIBRARIES=nowide -DBOOST_NOWIDE_INSTALL=OFF .. cmake --build . --config Debug ctest --output-on-failure --build-config Debug cmake --build . --config Release