diff options
Diffstat (limited to 'test cases/unit/65 static archive stripping/app/meson.build')
-rw-r--r-- | test cases/unit/65 static archive stripping/app/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/unit/65 static archive stripping/app/meson.build b/test cases/unit/65 static archive stripping/app/meson.build new file mode 100644 index 0000000..118719d --- /dev/null +++ b/test cases/unit/65 static archive stripping/app/meson.build @@ -0,0 +1,7 @@ +project('app', ['c']) + +a = dependency('test-a') +b = dependency('test-b') + +executable('appA', files('appA.c'), dependencies : a) +executable('appB', files('appB.c'), dependencies : b) |