diff options
author | David Cole <david.cole@kitware.com> | 2012-01-17 21:22:53 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-01-17 21:22:53 (GMT) |
commit | 4dd47eb6c394c54bde00ebd0d99a8c01c7128b9f (patch) | |
tree | d82076ceed295758065dba3a8091bfa482bc0c22 /Tests | |
parent | d9d24e2196a76dc6606d5972d382467c010c9f4e (diff) | |
parent | 0df1942a72f1e67c88f0d02dc405fbd76793347a (diff) | |
download | CMake-4dd47eb6c394c54bde00ebd0d99a8c01c7128b9f.zip CMake-4dd47eb6c394c54bde00ebd0d99a8c01c7128b9f.tar.gz CMake-4dd47eb6c394c54bde00ebd0d99a8c01c7128b9f.tar.bz2 |
Merge topic 'compiler-version'
0df1942 Detect SGI MIPSpro compiler version with its id
a5e892c Document compiler version macro formats used for detection
d7c6f41 Detect HP compiler version with its id
3dd9fa9 Detect SunPro compiler version with its id
c198730 Detect Watcom compiler version with its id
5899b98 Detect Clang compiler version with its id
b8cfa65 Detect PGI compiler version with its id
6dae666 Detect IBM XL compiler version with its id
4080d55 Detect Borland compiler version with its id
2cc205a Detect Intel compiler version with its id (#11937)
a6d83cc Detect MSVC compiler version with its id
a662855 Detect GNU compiler version with its id (#6251)
fa7141f Add framework to detect compiler version with its id (#12408)
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/SystemInformation/SystemInformation.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/SystemInformation/SystemInformation.in b/Tests/SystemInformation/SystemInformation.in index 1055d07..90ae20a 100644 --- a/Tests/SystemInformation/SystemInformation.in +++ b/Tests/SystemInformation/SystemInformation.in @@ -17,6 +17,10 @@ CMAKE_CXX_COMPILER == "${CMAKE_CXX_COMPILER}" CMAKE_C_COMPILER == "${CMAKE_C_COMPILER}" CMAKE_COMPILER_IS_GNUCC == "${CMAKE_COMPILER_IS_GNUCC}" CMAKE_COMPILER_IS_GNUCXX == "${CMAKE_COMPILER_IS_GNUCXX}" +CMAKE_C_COMPILER_ID == "${CMAKE_C_COMPILER_ID}" +CMAKE_C_COMPILER_VERSION == "${CMAKE_C_COMPILER_VERSION}" +CMAKE_CXX_COMPILER_ID == "${CMAKE_CXX_COMPILER_ID}" +CMAKE_CXX_COMPILER_VERSION == "${CMAKE_CXX_COMPILER_VERSION}" // C shared library flag CMAKE_SHARED_LIBRARY_C_FLAGS == "${CMAKE_SHARED_LIBRARY_C_FLAGS}" |