diff options
Diffstat (limited to 'Tests/SameName/Lib1')
-rw-r--r-- | Tests/SameName/Lib1/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Tests/SameName/Lib1/libc1.c | 4 | ||||
-rw-r--r-- | Tests/SameName/Lib1/libc1.h | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/Tests/SameName/Lib1/CMakeLists.txt b/Tests/SameName/Lib1/CMakeLists.txt new file mode 100644 index 0000000..67e7f68 --- /dev/null +++ b/Tests/SameName/Lib1/CMakeLists.txt @@ -0,0 +1 @@ +ADD_LIBRARY(mytest libc1.c) diff --git a/Tests/SameName/Lib1/libc1.c b/Tests/SameName/Lib1/libc1.c new file mode 100644 index 0000000..b01e1e1 --- /dev/null +++ b/Tests/SameName/Lib1/libc1.c @@ -0,0 +1,4 @@ +float LibC1Func() +{ + return 2.0; +} diff --git a/Tests/SameName/Lib1/libc1.h b/Tests/SameName/Lib1/libc1.h new file mode 100644 index 0000000..84c94a9 --- /dev/null +++ b/Tests/SameName/Lib1/libc1.h @@ -0,0 +1 @@ +extern float LibC1Func(); |