mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 18:48:14 +00:00
abf1df48fc
The code for the tests is basically the same for all those subtests, so have one template and configure that for as many tests as possible to make it easier maintainable.
8 lines
181 B
CMake
8 lines
181 B
CMake
cmake_minimum_required(VERSION 2.8.9)
|
|
project(CTestTestMemcheck@SUBTEST_NAME@)
|
|
include(CTest)
|
|
|
|
add_test(NAME RunCMake COMMAND "${CMAKE_COMMAND}" --version)
|
|
|
|
@CMAKELISTS_EXTRA_CODE@
|