mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
19beee46cc
If `CTEST_USE_LAUNCHERS` is `TRUE` in a CTest script then the `ctest_configure` command will add `-DCTEST_USE_LAUNCHERS:BOOL=TRUE` to the cmake command used to configure the project. This allows a project to only set `CTEST_USE_LAUNCHERS` in a ctest script and have launchers work.
7 lines
215 B
Plaintext
7 lines
215 B
Plaintext
cmake_minimum_required(VERSION 3.1)
|
|
@CASE_CMAKELISTS_PREFIX_CODE@
|
|
project(CTestBuild@CASE_NAME@ NONE)
|
|
include(CTest)
|
|
add_test(NAME RunCMakeVersion COMMAND "${CMAKE_COMMAND}" --version)
|
|
@CASE_CMAKELISTS_SUFFIX_CODE@
|