summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-05-16 18:36:19 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-05-16 18:36:19 (GMT)
commit9cdb5c0b547d36f56408f05816f66a22afd72258 (patch)
tree94c1f72305e45d1c97b615cbda58c4d116cf9427 /Tests
parent1b4b64cd3c2f22260c74537cfaf84dc52d6cf86c (diff)
parent4e4688e46944bd94966d8abdaad68aad1cc2212b (diff)
downloadCMake-9cdb5c0b547d36f56408f05816f66a22afd72258.zip
CMake-9cdb5c0b547d36f56408f05816f66a22afd72258.tar.gz
CMake-9cdb5c0b547d36f56408f05816f66a22afd72258.tar.bz2
Merge topic 'vs10-preprocessor-semicolons'
4e4688e VS 10: Escape ; as %3B in preprocessor definitions (#14073)
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Preprocess/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/Preprocess/CMakeLists.txt b/Tests/Preprocess/CMakeLists.txt
index 78746e7..fed9163 100644
--- a/Tests/Preprocess/CMakeLists.txt
+++ b/Tests/Preprocess/CMakeLists.txt
@@ -55,7 +55,7 @@ endif()
# must not have it escaped inside the configured header.
set(STRING_EXTRA "")
-if(NOT BORLAND AND NOT PP_VS70 AND NOT PP_VS100 AND NOT PP_VS110)
+if(NOT BORLAND AND NOT PP_VS70)
# 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
@@ -63,7 +63,6 @@ if(NOT BORLAND AND NOT PP_VS70 AND NOT PP_VS100 AND NOT PP_VS110)
#
# The VS 7.0 IDE separates definitions on semicolons and commas with
# no regard for quotes. Fortunately VS 7.1 and above are okay.
- # VS 10 seems to also not like semicolons
set(SEMICOLON "\;")
endif()