summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/main.cpp
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-08-21 09:04:09 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-08-21 09:04:09 (GMT)
commit733deb66c63dbbd8caa84f7630318c6f76da2d9f (patch)
tree0b2a5b44cc2ff17838acc7bd37cc68416b42a58a /Tests/CompileDefinitions/main.cpp
parent3dae652b4ea8e039dd9f4d845497ec988fbbe82c (diff)
downloadCMake-733deb66c63dbbd8caa84f7630318c6f76da2d9f.zip
CMake-733deb66c63dbbd8caa84f7630318c6f76da2d9f.tar.gz
CMake-733deb66c63dbbd8caa84f7630318c6f76da2d9f.tar.bz2
Fix CompileDefinitions test on Visual Studio.
Avoid testing unsupported spaces in define values.
Diffstat (limited to 'Tests/CompileDefinitions/main.cpp')
-rw-r--r--Tests/CompileDefinitions/main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/Tests/CompileDefinitions/main.cpp b/Tests/CompileDefinitions/main.cpp
index d80c9dc..6db6f3f 100644
--- a/Tests/CompileDefinitions/main.cpp
+++ b/Tests/CompileDefinitions/main.cpp
@@ -15,11 +15,16 @@ template<>
struct CMakeStaticAssert<true> {};
static const char fun_string[] = CMAKE_IS_;
+#ifndef NO_SPACES_IN_DEFINE_VALUES
static const char very_fun_string[] = CMAKE_IS_REALLY;
+#endif
enum {
- StringLiteralTest1 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_) == sizeof("Fun")>),
+ StringLiteralTest1 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_) == sizeof("Fun")>)
+#ifndef NO_SPACES_IN_DEFINE_VALUES
+ ,
StringLiteralTest2 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_REALLY) == sizeof("Very Fun")>)
+#endif
};
int main(int argc, char **argv)