diff options
Diffstat (limited to 'Tests/CMakeCommands/target_link_libraries/depC.cpp')
-rw-r--r-- | Tests/CMakeCommands/target_link_libraries/depC.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/CMakeCommands/target_link_libraries/depC.cpp b/Tests/CMakeCommands/target_link_libraries/depC.cpp new file mode 100644 index 0000000..93410a8 --- /dev/null +++ b/Tests/CMakeCommands/target_link_libraries/depC.cpp @@ -0,0 +1,13 @@ + +#include "depC.h" + +int DepC::foo() +{ + return 0; +} + +DepA DepC::getA() +{ + DepA a; + return a; +}
\ No newline at end of file |