summaryrefslogtreecommitdiffstats
path: root/.gitlab/ci/configure_common.cmake
blob: 45852246cdb7e6cafe71190cc07ad69e3b44df84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set(CTEST_USE_LAUNCHERS "ON" CACHE STRING "")

# We run the install right after the build. Avoid rerunning it when installing.
set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY "ON" CACHE STRING "")
# Install CMake under the build tree.
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/install" CACHE PATH "")
set(CMake_TEST_INSTALL "OFF" CACHE BOOL "")

if (NOT "$ENV{CMAKE_BUILD_TYPE}" STREQUAL "")
  set(CMAKE_BUILD_TYPE "$ENV{CMAKE_BUILD_TYPE}" CACHE STRING "")
endif ()

include("${CMAKE_CURRENT_LIST_DIR}/configure_sccache.cmake")