diff options
author | Brad King <brad.king@kitware.com> | 2013-04-11 15:34:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-04-11 15:41:15 (GMT) |
commit | 4e4688e46944bd94966d8abdaad68aad1cc2212b (patch) | |
tree | 9c5f3392c977cd6521880042c7d53a8cbbfcfe7a /Tests/Preprocess/CMakeLists.txt | |
parent | 6bfa3d8668ecbc0c7b57f1c0fdcd56ba177a00b6 (diff) | |
download | CMake-4e4688e46944bd94966d8abdaad68aad1cc2212b.zip CMake-4e4688e46944bd94966d8abdaad68aad1cc2212b.tar.gz CMake-4e4688e46944bd94966d8abdaad68aad1cc2212b.tar.bz2 |
VS 10: Escape ; as %3B in preprocessor definitions (#14073)
Use the suggestion from http://support.microsoft.com/kb/2262855 to escape
semicolons in preprocessor definitions for VS >= 10. Update the
COMPILE_DEFINITIONS documentation disclaimer list of known limitations
accordingly. Update our "Preprocess" test to cover the case.
Suggested-by: Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>
Diffstat (limited to 'Tests/Preprocess/CMakeLists.txt')
-rw-r--r-- | Tests/Preprocess/CMakeLists.txt | 3 |
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() |