summaryrefslogtreecommitdiffstats
path: root/Tests/Module/WriteCompilerDetectionHeader/main.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-05-14 17:58:30 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-05-14 17:58:30 (GMT)
commit2e347eb1837d85c0323b51322f267e69a7bd680f (patch)
tree82b82c16576477776c5cbe812a2f0f527d20af2e /Tests/Module/WriteCompilerDetectionHeader/main.cpp
parent605eba8439fbad4baff7bee225674b207e9238b4 (diff)
parent62a4a67dc54f3b796cd2735b230a863815d932b2 (diff)
downloadCMake-2e347eb1837d85c0323b51322f267e69a7bd680f.zip
CMake-2e347eb1837d85c0323b51322f267e69a7bd680f.tar.gz
CMake-2e347eb1837d85c0323b51322f267e69a7bd680f.tar.bz2
Merge topic 'WriteCompilerDetectionHeader-module'
62a4a67d Add the WriteCompilerDetectionHeader module.
Diffstat (limited to 'Tests/Module/WriteCompilerDetectionHeader/main.cpp')
-rw-r--r--Tests/Module/WriteCompilerDetectionHeader/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/Module/WriteCompilerDetectionHeader/main.cpp b/Tests/Module/WriteCompilerDetectionHeader/main.cpp
new file mode 100644
index 0000000..8b4ea52
--- /dev/null
+++ b/Tests/Module/WriteCompilerDetectionHeader/main.cpp
@@ -0,0 +1,19 @@
+
+#include "test_compiler_detection.h"
+
+#define JOIN_IMPL(A, B) A ## B
+#define JOIN(A, B) JOIN_IMPL(A, B)
+#define CHECK(FEATURE) (JOIN(TEST_COMPILER_, FEATURE) == JOIN(EXPECTED_COMPILER_, FEATURE))
+
+#if !CHECK(CXX_DELEGATING_CONSTRUCTORS)
+#error cxx_delegating_constructors expected availability did not match.
+#endif
+
+#if !CHECK(CXX_VARIADIC_TEMPLATES)
+#error cxx_variadic_templates expected availability did not match.
+#endif
+
+int main()
+{
+ return 0;
+}