diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/common/78 internal dependency/proj1 | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/common/78 internal dependency/proj1')
5 files changed, 34 insertions, 0 deletions
diff --git a/meson/test cases/common/78 internal dependency/proj1/include/proj1.h b/meson/test cases/common/78 internal dependency/proj1/include/proj1.h new file mode 100644 index 000000000..ecb1e4b6f --- /dev/null +++ b/meson/test cases/common/78 internal dependency/proj1/include/proj1.h @@ -0,0 +1,5 @@ +#pragma once + +void proj1_func1(void); +void proj1_func2(void); +void proj1_func3(void); diff --git a/meson/test cases/common/78 internal dependency/proj1/meson.build b/meson/test cases/common/78 internal dependency/proj1/meson.build new file mode 100644 index 000000000..422021edb --- /dev/null +++ b/meson/test cases/common/78 internal dependency/proj1/meson.build @@ -0,0 +1,11 @@ +incdirs = include_directories('include') + +p1lib = static_library('proj1', 'proj1f1.c', + include_directories : incdirs +) + +indirect_source = files('proj1f2.c') + +proj1_dep = declare_dependency(include_directories : incdirs, + link_with : p1lib, + sources : ['proj1f3.c', indirect_source]) diff --git a/meson/test cases/common/78 internal dependency/proj1/proj1f1.c b/meson/test cases/common/78 internal dependency/proj1/proj1f1.c new file mode 100644 index 000000000..69fa823e1 --- /dev/null +++ b/meson/test cases/common/78 internal dependency/proj1/proj1f1.c @@ -0,0 +1,6 @@ +#include<proj1.h> +#include<stdio.h> + +void proj1_func1(void) { + printf("In proj1_func1.\n"); +} diff --git a/meson/test cases/common/78 internal dependency/proj1/proj1f2.c b/meson/test cases/common/78 internal dependency/proj1/proj1f2.c new file mode 100644 index 000000000..7dd621c3a --- /dev/null +++ b/meson/test cases/common/78 internal dependency/proj1/proj1f2.c @@ -0,0 +1,6 @@ +#include<proj1.h> +#include<stdio.h> + +void proj1_func2(void) { + printf("In proj1_func2.\n"); +} diff --git a/meson/test cases/common/78 internal dependency/proj1/proj1f3.c b/meson/test cases/common/78 internal dependency/proj1/proj1f3.c new file mode 100644 index 000000000..2861ddcf6 --- /dev/null +++ b/meson/test cases/common/78 internal dependency/proj1/proj1f3.c @@ -0,0 +1,6 @@ +#include<proj1.h> +#include<stdio.h> + +void proj1_func3(void) { + printf("In proj1_func3.\n"); +} |