summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/compiletest.cpp
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-08-24 18:24:24 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-08-24 18:24:24 (GMT)
commit05784dadc59ee3c87ab6140d684ff4c602de9ec1 (patch)
treedbaac2b00fb70a112a9e1ee71323c5c224bde6b9 /Tests/CompileDefinitions/compiletest.cpp
parent286f7c9644d1fb8ac8b5d46e2a3c9c393680acef (diff)
parentf0a1065393a57f503bc2c86f432f50dd4b8d5bbd (diff)
downloadCMake-05784dadc59ee3c87ab6140d684ff4c602de9ec1.zip
CMake-05784dadc59ee3c87ab6140d684ff4c602de9ec1.tar.gz
CMake-05784dadc59ee3c87ab6140d684ff4c602de9ec1.tar.bz2
Merge topic 'compile-definitions-unique'
f0a1065 Rename files from main.cpp to more meaningful names. ca7fb14 Fix the test setting COMPILE_DEFINITIONS target property 733deb6 Fix CompileDefinitions test on Visual Studio. 3dae652 Don't duplicate -D defines sent to the compiler.
Diffstat (limited to 'Tests/CompileDefinitions/compiletest.cpp')
-rw-r--r--Tests/CompileDefinitions/compiletest.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/Tests/CompileDefinitions/compiletest.cpp b/Tests/CompileDefinitions/compiletest.cpp
new file mode 100644
index 0000000..6db6f3f
--- /dev/null
+++ b/Tests/CompileDefinitions/compiletest.cpp
@@ -0,0 +1,33 @@
+
+#ifndef CMAKE_IS_FUN
+#error Expect CMAKE_IS_FUN definition
+#endif
+
+#if CMAKE_IS != Fun
+#error Expect CMAKE_IS=Fun definition
+#endif
+
+
+template<bool test>
+struct CMakeStaticAssert;
+
+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")>)
+#ifndef NO_SPACES_IN_DEFINE_VALUES
+ ,
+ StringLiteralTest2 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_REALLY) == sizeof("Very Fun")>)
+#endif
+};
+
+int main(int argc, char **argv)
+{
+ return 0;
+}