diff options
Diffstat (limited to 'meson/test cases/common/155 subproject dir name collision/custom_subproject_dir')
4 files changed, 40 insertions, 0 deletions
diff --git a/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/b.c b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/b.c new file mode 100644 index 000000000..4d71c0f9d --- /dev/null +++ b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/b.c @@ -0,0 +1,20 @@ +#include<stdlib.h> +char func_c(void); + +#if defined _WIN32 || defined __CYGWIN__ +#define DLL_PUBLIC __declspec(dllexport) +#else + #if defined __GNUC__ + #define DLL_PUBLIC __attribute__ ((visibility("default"))) + #else + #pragma message ("Compiler does not support symbol visibility.") + #define DLL_PUBLIC + #endif +#endif + +char DLL_PUBLIC func_b(void) { + if(func_c() != 'c') { + exit(3); + } + return 'b'; +} diff --git a/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/meson.build b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/meson.build new file mode 100644 index 000000000..8f4cb023e --- /dev/null +++ b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/B/meson.build @@ -0,0 +1,4 @@ +project('B', 'c') +C = subproject('C') +c = C.get_variable('c') +b = library('b', 'b.c', link_with : c) diff --git a/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/c.c b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/c.c new file mode 100644 index 000000000..facd19943 --- /dev/null +++ b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/c.c @@ -0,0 +1,14 @@ +#if defined _WIN32 || defined __CYGWIN__ +#define DLL_PUBLIC __declspec(dllexport) +#else + #if defined __GNUC__ + #define DLL_PUBLIC __attribute__ ((visibility("default"))) + #else + #pragma message ("Compiler does not support symbol visibility.") + #define DLL_PUBLIC + #endif +#endif + +char DLL_PUBLIC func_c(void) { + return 'c'; +} diff --git a/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/meson.build b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/meson.build new file mode 100644 index 000000000..5d890977e --- /dev/null +++ b/meson/test cases/common/155 subproject dir name collision/custom_subproject_dir/C/meson.build @@ -0,0 +1,2 @@ +project('C', 'c') +c = library('c', 'c.c') |