summaryrefslogtreecommitdiff
path: root/test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-10-19 18:05:11 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-10-20 14:12:52 +0300
commit30a668d0bbc99f44af1c2ec755eb4ee27065f450 (patch)
treea75a75a334e022adc9e62ea1f6afd6c17fa1f5f3 /test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp
parent7bc7ff1433c7fb91ec276b6c3ebeec406a611345 (diff)
downloadmeson-30a668d0bbc99f44af1c2ec755eb4ee27065f450.tar.gz
cmake: Blacklist more compiler warning flags
Diffstat (limited to 'test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp')
-rw-r--r--test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp b/test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp
new file mode 100644
index 000000000..52f576bf3
--- /dev/null
+++ b/test cases/cmake/13 system includes/subprojects/cmMod/cmMod.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <string>
+#include "cmmodlib_export.h"
+
+class CMMODLIB_EXPORT cmModClass {
+ private:
+ std::string str;
+ public:
+ cmModClass(std::string foo);
+
+ std::string getStr() const;
+};