summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h
diff options
context:
space:
mode:
authorDaniele E. Domenichelli <daniele.domenichelli@iit.it>2013-09-20 13:10:40 (GMT)
committerBrad King <brad.king@kitware.com>2013-10-08 13:43:06 (GMT)
commit73d28d2177a8b014f8807a61d14d3064c5d5c033 (patch)
tree055b3078b3988b33a71a6fd7bea29a5500e709b1 /Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h
parent951a158c8a89512f52779ea29731234fa25b90e5 (diff)
downloadCMake-73d28d2177a8b014f8807a61d14d3064c5d5c033.zip
CMake-73d28d2177a8b014f8807a61d14d3064c5d5c033.tar.gz
CMake-73d28d2177a8b014f8807a61d14d3064c5d5c033.tar.bz2
CheckStructHasMember: Add support for C++
Previously if headers required to check if a struct has a member can be compiled with C++ compiler only, the check would fail because the C compiler fails. As a consequence, the result variable would be set to false, even if the struct has that particular member. Teach CHECK_STRUCT_HAS_MEMBER to accept a new optional argument LANGUAGE that allows one to explicitly set the compiler to use. The new signature is therefore: CHECK_STRUCT_HAS_MEMBER (<struct> <member> <header> <variable> [LANGUAGE <language>])
Diffstat (limited to 'Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h')
-rw-r--r--Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h b/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h
new file mode 100644
index 0000000..82bb049
--- /dev/null
+++ b/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.h
@@ -0,0 +1,9 @@
+#ifndef _CSHM_DUMMY_H
+#define _CSHM_DUMMY_H
+
+struct non_existent_struct;
+struct struct_with_member{
+ int member;
+};
+
+#endif