summaryrefslogtreecommitdiff
path: root/Tests/CMakeCommands/target_link_libraries/depD.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CMakeCommands/target_link_libraries/depD.h')
-rw-r--r--Tests/CMakeCommands/target_link_libraries/depD.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/CMakeCommands/target_link_libraries/depD.h b/Tests/CMakeCommands/target_link_libraries/depD.h
new file mode 100644
index 000000000..d24ff5f7c
--- /dev/null
+++ b/Tests/CMakeCommands/target_link_libraries/depD.h
@@ -0,0 +1,11 @@
+
+#include "depd_export.h"
+
+#include "depA.h"
+
+struct DEPD_EXPORT DepD
+{
+ int foo();
+
+ DepA getA();
+};