summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions/compiletest.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-03-26 18:36:07 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-03-26 18:36:07 (GMT)
commit0261bdfc1d041d949f96c4ebdd83f139d7338d71 (patch)
treef0d94a5a4ead121a020ca39195acaed09962c0c7 /Tests/CompileDefinitions/compiletest.cpp
parent2fcb06039daa4492c05fa346465028ea0b3d4eff (diff)
parent1703b00c7fc34f473e84f4ba29bdc73476637005 (diff)
downloadCMake-0261bdfc1d041d949f96c4ebdd83f139d7338d71.zip
CMake-0261bdfc1d041d949f96c4ebdd83f139d7338d71.tar.gz
CMake-0261bdfc1d041d949f96c4ebdd83f139d7338d71.tar.bz2
Merge topic 'fix-COMPILE_DEFINITIONS-config'
1703b00 Test evaluation of per-config COMPILE_DEFINITIONS (#14037) a6286e9 Fix the evaluation of per-config COMPILE_DEFINITIONS (#14037)
Diffstat (limited to 'Tests/CompileDefinitions/compiletest.cpp')
-rw-r--r--Tests/CompileDefinitions/compiletest.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/Tests/CompileDefinitions/compiletest.cpp b/Tests/CompileDefinitions/compiletest.cpp
index f18e59e..14b8eab 100644
--- a/Tests/CompileDefinitions/compiletest.cpp
+++ b/Tests/CompileDefinitions/compiletest.cpp
@@ -45,6 +45,30 @@ enum {
// TEST_GENERATOR_EXPRESSIONS
#endif
+#ifndef BUILD_IS_DEBUG
+# error "BUILD_IS_DEBUG not defined!"
+#endif
+#ifndef BUILD_IS_NOT_DEBUG
+# error "BUILD_IS_NOT_DEBUG not defined!"
+#endif
+
+// Check per-config definitions.
+#ifdef TEST_CONFIG_DEBUG
+# if !BUILD_IS_DEBUG
+# error "BUILD_IS_DEBUG false with TEST_CONFIG_DEBUG!"
+# endif
+# if BUILD_IS_NOT_DEBUG
+# error "BUILD_IS_NOT_DEBUG true with TEST_CONFIG_DEBUG!"
+# endif
+#else
+# if BUILD_IS_DEBUG
+# error "BUILD_IS_DEBUG true without TEST_CONFIG_DEBUG!"
+# endif
+# if !BUILD_IS_NOT_DEBUG
+# error "BUILD_IS_NOT_DEBUG false without TEST_CONFIG_DEBUG!"
+# endif
+#endif
+
int main(int argc, char **argv)
{
return 0;