aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/75 custom subproject dir/custom_subproject_dir
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/common/75 custom subproject dir/custom_subproject_dir')
-rw-r--r--meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/b.c20
-rw-r--r--meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/meson.build4
-rw-r--r--meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/c.c14
-rw-r--r--meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/meson.build2
4 files changed, 40 insertions, 0 deletions
diff --git a/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/b.c b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/b.c
new file mode 100644
index 000000000..4d71c0f9d
--- /dev/null
+++ b/meson/test cases/common/75 custom subproject dir/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/75 custom subproject dir/custom_subproject_dir/B/meson.build b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/meson.build
new file mode 100644
index 000000000..280c60ce2
--- /dev/null
+++ b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/B/meson.build
@@ -0,0 +1,4 @@
+project('B', 'c')
+C = subproject('C')
+c = C.get_variable('c')
+b = shared_library('b', 'b.c', link_with : c)
diff --git a/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/c.c b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/c.c
new file mode 100644
index 000000000..facd19943
--- /dev/null
+++ b/meson/test cases/common/75 custom subproject dir/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/75 custom subproject dir/custom_subproject_dir/C/meson.build b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/meson.build
new file mode 100644
index 000000000..abf0b1e26
--- /dev/null
+++ b/meson/test cases/common/75 custom subproject dir/custom_subproject_dir/C/meson.build
@@ -0,0 +1,2 @@
+project('C', 'c')
+c = shared_library('c', 'c.c')