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