diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-20 20:38:59 +0200 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-23 09:10:42 +0200 |
| commit | 2bb4ec19f2ce290a348d54185cf5931c6d37aa58 (patch) | |
| tree | e08ae4c28c844d5b64edbd51a143b67063b31df9 /test cases | |
| parent | add821db64b3c1fd7568736aaa67de53ad382eb4 (diff) | |
| download | meson-2bb4ec19f2ce290a348d54185cf5931c6d37aa58.tar.gz | |
ast: resolve ID nodes in flatten_args
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/unit/55 introspection/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test cases/unit/55 introspection/meson.build b/test cases/unit/55 introspection/meson.build index 95a7c5f0f..55e80c116 100644 --- a/test cases/unit/55 introspection/meson.build +++ b/test cases/unit/55 introspection/meson.build @@ -20,9 +20,11 @@ endif subdir('sharedlib') subdir('staticlib') +var3 = 'test3' + t1 = executable('test1', 't1.cpp', link_with: [sharedlib], install: true, build_by_default: get_option('test_opt2')) t2 = executable('test2', 't2.cpp', link_with: [staticlib]) -t3 = executable('test3', 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1]) +t3 = executable(var3, 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1]) test('test case 1', t1) test('test case 2', t2) |
