mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
b184cc256b
It is not compatible with building for multiple architectures.
16 lines
558 B
CMake
16 lines
558 B
CMake
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 BOOL "")
|
|
# 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 ()
|
|
|
|
if (NOT configure_no_sccache)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/configure_sccache.cmake")
|
|
endif()
|