diff options
author | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2017-06-18 22:58:27 +0300 |
---|---|---|
committer | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2017-06-29 13:16:38 +0300 |
commit | 1d7c7a7ea6ef52b307dbc99fe63f9818f0521c00 (patch) | |
tree | 05c6db420fe6fb2015c5d4dab0a6a409daba0836 | |
parent | ea79e9496438abe2d1d4ad957cc8bd9324f3d24f (diff) | |
download | meson-1d7c7a7ea6ef52b307dbc99fe63f9818f0521c00.zip meson-1d7c7a7ea6ef52b307dbc99fe63f9818f0521c00.tar.gz meson-1d7c7a7ea6ef52b307dbc99fe63f9818f0521c00.tar.bz2 |
Add a test case for a "library at project root" use case.
4 files changed, 16 insertions, 0 deletions
diff --git a/test cases/common/154 library at root/lib.c b/test cases/common/154 library at root/lib.c new file mode 100644 index 0000000..a5b3dc3 --- /dev/null +++ b/test cases/common/154 library at root/lib.c @@ -0,0 +1,6 @@ +#if defined _WIN32 || defined __CYGWIN__ +__declspec(dllexport) +#endif +int fn(void) { + return -1; +} diff --git a/test cases/common/154 library at root/main/main.c b/test cases/common/154 library at root/main/main.c new file mode 100644 index 0000000..c4e1b4e --- /dev/null +++ b/test cases/common/154 library at root/main/main.c @@ -0,0 +1,5 @@ +extern int fn(void); + +int main() { + return 1 + fn(); +} diff --git a/test cases/common/154 library at root/main/meson.build b/test cases/common/154 library at root/main/meson.build new file mode 100644 index 0000000..557378a --- /dev/null +++ b/test cases/common/154 library at root/main/meson.build @@ -0,0 +1,2 @@ +exe = executable('main', 'main.c', link_with : lib) +test('stuff works', exe) diff --git a/test cases/common/154 library at root/meson.build b/test cases/common/154 library at root/meson.build new file mode 100644 index 0000000..bfdd869 --- /dev/null +++ b/test cases/common/154 library at root/meson.build @@ -0,0 +1,3 @@ +project('lib@root', 'c') +lib = shared_library('lib', 'lib.c') +subdir('main') |