2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-02-16 01:22:20 +00:00

Disable installation for superbuild

static_assert and smart_ptr are missing installation targets
This commit is contained in:
Flamefire
2019-12-25 15:59:31 +01:00
parent 27e04866be
commit 5ebf2cb2be
2 changed files with 4 additions and 4 deletions

View File

@@ -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