diff options
author | Brad King <brad.king@kitware.com> | 2012-08-24 13:10:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-24 14:52:23 (GMT) |
commit | 3df81b49126cf6dc3e4e9a8fa8c368f33886db54 (patch) | |
tree | 5fb9d4ae107922f2711ed312251816a1936f7a7c /Modules/CMakeCXXCompiler.cmake.in | |
parent | 7195aca54f40778f41894c9e62649afe09e71d6c (diff) | |
download | CMake-3df81b49126cf6dc3e4e9a8fa8c368f33886db54.zip CMake-3df81b49126cf6dc3e4e9a8fa8c368f33886db54.tar.gz CMake-3df81b49126cf6dc3e4e9a8fa8c368f33886db54.tar.bz2 |
Move CMAKE_<LANG>_COMPILER_WORKS to compiler information files
Since the parent commit this test result is specific to the version of
CMake. Store it in the version-specific compiler information files
instead of CMakeCache.txt so testing can be re-done to meet the
requirements of the current version of CMake even if another version of
CMake was already used to configure the build tree.
Diffstat (limited to 'Modules/CMakeCXXCompiler.cmake.in')
-rw-r--r-- | Modules/CMakeCXXCompiler.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeCXXCompiler.cmake.in b/Modules/CMakeCXXCompiler.cmake.in index b6477df..2e891b3 100644 --- a/Modules/CMakeCXXCompiler.cmake.in +++ b/Modules/CMakeCXXCompiler.cmake.in @@ -9,6 +9,7 @@ set(CMAKE_RANLIB "@CMAKE_RANLIB@") set(CMAKE_LINKER "@CMAKE_LINKER@") set(CMAKE_COMPILER_IS_GNUCXX @CMAKE_COMPILER_IS_GNUCXX@) set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS @CMAKE_CXX_COMPILER_WORKS@) set(CMAKE_COMPILER_IS_MINGW @CMAKE_COMPILER_IS_MINGW@) set(CMAKE_COMPILER_IS_CYGWIN @CMAKE_COMPILER_IS_CYGWIN@) if(CMAKE_COMPILER_IS_CYGWIN) |