diff options
author | Brad King <brad.king@kitware.com> | 2011-09-23 15:04:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-09-23 15:07:24 (GMT) |
commit | 3b5256e19e27794ba871b0149f4c8f0237d1e872 (patch) | |
tree | 4330eec37519bfc68d92c37986dd6bb616142482 /Tests/Preprocess | |
parent | 3d5632ed59d3d46298304d20d3f11f9d1da02f93 (diff) | |
download | CMake-3b5256e19e27794ba871b0149f4c8f0237d1e872.zip CMake-3b5256e19e27794ba871b0149f4c8f0237d1e872.tar.gz CMake-3b5256e19e27794ba871b0149f4c8f0237d1e872.tar.bz2 |
Teach our tests about special cases for VS 11
Teach the CheckCompilerRelatedVariables test to verify MSVC11. Update
the special cases already in the Preprocess and VSExternalInclude tests
for VS 10 to work for VS 11 too.
Diffstat (limited to 'Tests/Preprocess')
-rw-r--r-- | Tests/Preprocess/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/Preprocess/CMakeLists.txt b/Tests/Preprocess/CMakeLists.txt index b4ec17c..1ed7b83 100644 --- a/Tests/Preprocess/CMakeLists.txt +++ b/Tests/Preprocess/CMakeLists.txt @@ -37,6 +37,9 @@ endif("${CMAKE_GENERATOR}" MATCHES "Visual Studio") if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 10") set(PP_VS100 1) endif("${CMAKE_GENERATOR}" MATCHES "Visual Studio 10") +if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 11") + set(PP_VS110 1) +endif("${CMAKE_GENERATOR}" MATCHES "Visual Studio 11") # Some tests below check the PP_* variables set above. They are meant # to test the case that the build tool is at fault. Other tests below @@ -52,7 +55,7 @@ endif("${CMAKE_GENERATOR}" MATCHES "Visual Studio 10") # must not have it escaped inside the configured header. set(STRING_EXTRA "") -if(NOT BORLAND AND NOT PP_VS70 AND NOT PP_VS100) +if(NOT BORLAND AND NOT PP_VS70 AND NOT PP_VS100 AND NOT PP_VS110) # Borland, VS70 IDE: ; # The Borland compiler will simply not accept a non-escaped semicolon # on the command line. If it is escaped \; then the escape character |