diff options
Diffstat (limited to 'Tests/Framework')
-rw-r--r-- | Tests/Framework/CMakeLists.txt | 11 | ||||
-rw-r--r-- | Tests/Framework/bar.cxx | 6 | ||||
-rw-r--r-- | Tests/Framework/foo.cxx | 6 | ||||
-rw-r--r-- | Tests/Framework/foo.h | 1 | ||||
-rw-r--r-- | Tests/Framework/foo2.h | 1 |
5 files changed, 25 insertions, 0 deletions
diff --git a/Tests/Framework/CMakeLists.txt b/Tests/Framework/CMakeLists.txt new file mode 100644 index 0000000..3aac24d --- /dev/null +++ b/Tests/Framework/CMakeLists.txt @@ -0,0 +1,11 @@ +project(Framework) +add_library(foo SHARED foo.cxx) +set_target_properties(foo PROPERTIES + FRAMEWORK TRUE + FRAMEWORK_PUBLIC_HEADERS "foo.h;foo2.h" + FRAMEWORK_VERSION ver2 + FRAMEWORK_RESOURCES "" +# VERSION 1.2 +) +add_executable(bar bar.cxx) +target_link_libraries(bar foo) diff --git a/Tests/Framework/bar.cxx b/Tests/Framework/bar.cxx new file mode 100644 index 0000000..37c132a --- /dev/null +++ b/Tests/Framework/bar.cxx @@ -0,0 +1,6 @@ +void foo(); +int main() +{ + foo(); + return 0; +} diff --git a/Tests/Framework/foo.cxx b/Tests/Framework/foo.cxx new file mode 100644 index 0000000..62acbb7 --- /dev/null +++ b/Tests/Framework/foo.cxx @@ -0,0 +1,6 @@ +#include <stdio.h> + +void foo() +{ + printf("foo\n"); +} diff --git a/Tests/Framework/foo.h b/Tests/Framework/foo.h new file mode 100644 index 0000000..d959c81 --- /dev/null +++ b/Tests/Framework/foo.h @@ -0,0 +1 @@ +fooh diff --git a/Tests/Framework/foo2.h b/Tests/Framework/foo2.h new file mode 100644 index 0000000..2431d79 --- /dev/null +++ b/Tests/Framework/foo2.h @@ -0,0 +1 @@ +foo2h |