diff options
author | Brad King <brad.king@kitware.com> | 2014-06-24 19:10:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-24 19:38:24 (GMT) |
commit | 8635ac2330641adfbe45b81047288a6074134ee1 (patch) | |
tree | 2cb66b0b3b12ef2a7ef003162c6935fb1e796f0b /Tests/Preprocess | |
parent | c196b3ca023aeddfa8851477fc34a068bdd7d26f (diff) | |
download | CMake-8635ac2330641adfbe45b81047288a6074134ee1.zip CMake-8635ac2330641adfbe45b81047288a6074134ee1.tar.gz CMake-8635ac2330641adfbe45b81047288a6074134ee1.tar.bz2 |
Tests/Preprocess: Remove unnecessary VS version tests
Since commit v2.8.12~436^2 (VS 10: Escape ; as %3B in preprocessor
definitions, 2013-04-11) the Tests/Preprocessor/CMakeLists.txt file no
longer uses the PP_VS1XX values, so stop setting them.
Diffstat (limited to 'Tests/Preprocess')
-rw-r--r-- | Tests/Preprocess/CMakeLists.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Tests/Preprocess/CMakeLists.txt b/Tests/Preprocess/CMakeLists.txt index d44cb9c..cdfdcc1 100644 --- a/Tests/Preprocess/CMakeLists.txt +++ b/Tests/Preprocess/CMakeLists.txt @@ -34,15 +34,6 @@ endif() if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") set(PP_VS 1) endif() -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 10") - set(PP_VS100 1) -endif() -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 11") - set(PP_VS110 1) -endif() -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 12") - set(PP_VS120 1) -endif() # 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 |