summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/CMakeLists.txt
blob: aa400d02e01e5080b67b07af414209adfa899ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
macro(add_CMakeCommands_test test)
  add_test(CMakeCommands.${test} ${CMAKE_CMAKE_COMMAND}
    -DCMake_SOURCE_DIR=${CMake_SOURCE_DIR} # TODO: Remove
    -Ddir=${CMAKE_CURRENT_BINARY_DIR}/${test}
    -Dgen=${CMAKE_TEST_GENERATOR}
    -P "${CMAKE_CURRENT_SOURCE_DIR}/${test}/test.cmake"
    )
endmacro()

add_CMakeCommands_test(build_command)
add_CMakeCommands_test(find_package)