diff options
author | Brad King <brad.king@kitware.com> | 2013-11-14 16:28:07 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-11-14 16:28:07 (GMT) |
commit | 42eaf3416890ca6fc4462c112492bb740e943525 (patch) | |
tree | a1c0105a76065349c1397de9a262651aceb06d0d /Tests/CMakeTests/CMakeLists.txt | |
parent | 0b2d376142a46efe6cc68814c4f72eb8a618e590 (diff) | |
parent | 15610bb5b16a4f39202a84a6f6ef1a22b17170df (diff) | |
download | CMake-42eaf3416890ca6fc4462c112492bb740e943525.zip CMake-42eaf3416890ca6fc4462c112492bb740e943525.tar.gz CMake-42eaf3416890ca6fc4462c112492bb740e943525.tar.bz2 |
Merge topic 'configure_file-drop-IMMEDIATE'
15610bb Drop use of configure_file IMMEDIATE option
Diffstat (limited to 'Tests/CMakeTests/CMakeLists.txt')
-rw-r--r-- | Tests/CMakeTests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeTests/CMakeLists.txt b/Tests/CMakeTests/CMakeLists.txt index 4c49c6a..41714f6 100644 --- a/Tests/CMakeTests/CMakeLists.txt +++ b/Tests/CMakeTests/CMakeLists.txt @@ -3,7 +3,7 @@ set(CMAKE_EXECUTABLE "${CMake_BIN_DIR}/cmake") macro(AddCMakeTest TestName PreArgs) configure_file("${CMAKE_CURRENT_SOURCE_DIR}/${TestName}Test.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/${TestName}Test.cmake" @ONLY IMMEDIATE) + "${CMAKE_CURRENT_BINARY_DIR}/${TestName}Test.cmake" @ONLY) add_test(NAME CMake.${TestName} COMMAND ${CMAKE_EXECUTABLE} ${PreArgs} -P "${CMAKE_CURRENT_BINARY_DIR}/${TestName}Test.cmake" ${ARGN}) |