summaryrefslogtreecommitdiff
path: root/.gitlab/ci/configure_common.cmake
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2020-05-26 09:16:22 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2020-05-26 12:50:16 -0400
commitf00ab86f1f77cba7554a2524439bb5d1a07c55ab (patch)
treef13a3a8bce2c6bfb325d9b3a163da5fd71ebf0fa /.gitlab/ci/configure_common.cmake
parentdeb5194a32f1693ba939a271acf8662ca69ba93c (diff)
downloadcmake-f00ab86f1f77cba7554a2524439bb5d1a07c55ab.tar.gz
ci: use BOOL for boolean settings
Diffstat (limited to '.gitlab/ci/configure_common.cmake')
-rw-r--r--.gitlab/ci/configure_common.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/ci/configure_common.cmake b/.gitlab/ci/configure_common.cmake
index 45852246cd..df49b2d433 100644
--- a/.gitlab/ci/configure_common.cmake
+++ b/.gitlab/ci/configure_common.cmake
@@ -1,7 +1,7 @@
-set(CTEST_USE_LAUNCHERS "ON" CACHE STRING "")
+set(CTEST_USE_LAUNCHERS "ON" CACHE BOOL "")
# We run the install right after the build. Avoid rerunning it when installing.
-set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY "ON" CACHE STRING "")
+set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY "ON" CACHE BOOL "")
# Install CMake under the build tree.
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/install" CACHE PATH "")
set(CMake_TEST_INSTALL "OFF" CACHE BOOL "")