summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/depC.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CMakeCommands/target_link_libraries/depC.h')
-rw-r--r--Tests/CMakeCommands/target_link_libraries/depC.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/CMakeCommands/target_link_libraries/depC.h b/Tests/CMakeCommands/target_link_libraries/depC.h
new file mode 100644
index 000000000..4d65c9eb3
--- /dev/null
+++ b/Tests/CMakeCommands/target_link_libraries/depC.h
@@ -0,0 +1,12 @@
+
+#include "depc_export.h"
+
+#include "depA.h"
+
+struct DEPC_EXPORT DepC
+{
+ int foo();
+
+ DepA getA();
+
+};