diff options
author | Markus Henschel <markus.henschel@yager.de> | 2014-05-28 19:30:04 +0200 |
---|---|---|
committer | Markus Henschel <markus.henschel@yager.de> | 2014-05-28 19:30:04 +0200 |
commit | a408ad03411e2774e6f520c50a1fceb52d349b73 (patch) | |
tree | ba5214cbf2ea90c8c17effcb9bec3f2f458bbccf /tests/cmake/target_library/srcfile.cmake | |
parent | d512051754aa474bd94d8f728ce8689070a87d7c (diff) |
add test for building shared and static libraries with cmake
Diffstat (limited to 'tests/cmake/target_library/srcfile.cmake')
-rw-r--r-- | tests/cmake/target_library/srcfile.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/cmake/target_library/srcfile.cmake b/tests/cmake/target_library/srcfile.cmake new file mode 100644 index 00000000..10e9e6f8 --- /dev/null +++ b/tests/cmake/target_library/srcfile.cmake @@ -0,0 +1,6 @@ +#include <stdio.h> + +void @TEST_FUNCTION_NAME@() +{ + printf("@TEST_FUNCTION_NAME@"); +} |