diff options
author | Brad King <brad.king@kitware.com> | 2010-07-29 14:59:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-07-29 15:22:48 (GMT) |
commit | df1e00ff82c16bf01fdfc889ceea2d05205e14c6 (patch) | |
tree | c71d34a3771012a92f5ae9852f01de51333aa0c3 /Tests/CMakeInstall.cmake | |
parent | 03b7eff0eacc2b80a85b949eb8031cb5e7a3d393 (diff) | |
download | CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.zip CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.tar.gz CMake-df1e00ff82c16bf01fdfc889ceea2d05205e14c6.tar.bz2 |
Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046)
This is good practice, and is necessary to support building CMake as a
subdirectory of another project.
Diffstat (limited to 'Tests/CMakeInstall.cmake')
-rw-r--r-- | Tests/CMakeInstall.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeInstall.cmake b/Tests/CMakeInstall.cmake index f141b53..dabc852 100644 --- a/Tests/CMakeInstall.cmake +++ b/Tests/CMakeInstall.cmake @@ -33,7 +33,7 @@ if(CMake_TEST_INSTALL) add_test(CMake.Install ${CMake_TEST_INSTALL_CTest} ${CMake_TEST_INSTALL_CONFIG} - --build-and-test ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} + --build-and-test ${CMake_SOURCE_DIR} ${CMake_BINARY_DIR} --build-generator ${CMAKE_GENERATOR} # Not CMAKE_TEST_GENERATOR --build-project CMake --build-makeprogram ${CMAKE_MAKE_PROGRAM} # Not CMAKE_TEST_MAKEPROGRAM |