diff options
Diffstat (limited to 'Tests/CMakeCommands/target_link_libraries/depD.h')
-rw-r--r-- | Tests/CMakeCommands/target_link_libraries/depD.h | 11 |
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 0000000..d24ff5f --- /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(); +}; |