diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-17 19:54:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-17 19:54:25 (GMT) |
commit | bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2 (patch) | |
tree | d88004c142250964ce50a697fa9bbb9ec09ee57a /Modules/CMakeSystemSpecificInformation.cmake | |
parent | 5abc8c18c08f2057ef2b9962757bab10b751e740 (diff) | |
download | CMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.zip CMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.tar.gz CMake-bd74882d3e0e4e5fe6c9353fa8b6f28a3adec9c2.tar.bz2 |
ENH: use CMAKE_ROOT and not PROJECT_ for try compile stuff, this allows projects within projects to have different languages
Diffstat (limited to 'Modules/CMakeSystemSpecificInformation.cmake')
-rw-r--r-- | Modules/CMakeSystemSpecificInformation.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/CMakeSystemSpecificInformation.cmake b/Modules/CMakeSystemSpecificInformation.cmake index 04aaa17..845dd07 100644 --- a/Modules/CMakeSystemSpecificInformation.cmake +++ b/Modules/CMakeSystemSpecificInformation.cmake @@ -45,12 +45,12 @@ ELSE(EXISTS ${CMAKE_SYSTEM_INFO_FILE}) MESSAGE("System is unknown to cmake, create:\n${CMAKE_SYSTEM_INFO_FILE}" " to use this system, please send your config file to " "cmake@www.cmake.org so it can be added to cmake"") - IF(EXISTS ${PROJECT_BINARY_DIR}/CMakeCache.txt) - CONFIGURE_FILE(${PROJECT_BINARY_DIR}/CMakeCache.txt - ${PROJECT_BINARY_DIR}/CopyOfCMakeCache.txt COPYONLY) + IF(EXISTS ${CMAKE_BINARY_DIR}/CMakeCache.txt) + CONFIGURE_FILE(${CMAKE_BINARY_DIR}/CMakeCache.txt + ${CMAKE_BINARY_DIR}/CopyOfCMakeCache.txt COPYONLY) MESSAGE("You CMakeCache.txt file was copied to CopyOfCMakeCache.txt. " "Please send that file to cmake@www.cmake.org.") - ENDIF(EXISTS ${PROJECT_BINARY_DIR}/CMakeCache.txt) + ENDIF(EXISTS ${CMAKE_BINARY_DIR}/CMakeCache.txt) ENDIF(EXISTS ${CMAKE_SYSTEM_INFO_FILE}) # 3. include optional systemname-compiler.cmake files |