diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-12 23:26:16 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-07 14:48:44 (GMT) |
commit | 8238a6cd5d2867e709e87a752e0a24c7c2bf28f0 (patch) | |
tree | adfccd2f25ec52fee35d4fcfbf4a244e22cb2092 /Tests | |
parent | 892243fc3bbc2bbd859cf6c6aaa7b1e1c19d59c9 (diff) | |
download | CMake-8238a6cd5d2867e709e87a752e0a24c7c2bf28f0.zip CMake-8238a6cd5d2867e709e87a752e0a24c7c2bf28f0.tar.gz CMake-8238a6cd5d2867e709e87a752e0a24c7c2bf28f0.tar.bz2 |
Add some COMPILE_OPTIONS for specifying C++ dialect.
These are compiler-specific, compiler version specific, extension specific
and standard version specific.
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 df3bf49..92b24e2 100644 --- a/Tests/SystemInformation/SystemInformation.in +++ b/Tests/SystemInformation/SystemInformation.in @@ -21,6 +21,10 @@ 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}" +CMAKE_CXX98_STANDARD_COMPILE_OPTION == "${CMAKE_CXX98_STANDARD_COMPILE_OPTION}" +CMAKE_CXX11_STANDARD_COMPILE_OPTION == "${CMAKE_CXX11_STANDARD_COMPILE_OPTION}" +CMAKE_CXX98_EXTENSION_COMPILE_OPTION == "${CMAKE_CXX98_EXTENSION_COMPILE_OPTION}" +CMAKE_CXX11_EXTENSION_COMPILE_OPTION == "${CMAKE_CXX11_EXTENSION_COMPILE_OPTION}" // C shared library flag CMAKE_SHARED_LIBRARY_C_FLAGS == "${CMAKE_SHARED_LIBRARY_C_FLAGS}" |