diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-20 21:25:52 +0200 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-23 09:10:47 +0200 |
| commit | feff2630ae151f4a89f12f5b19babce605e64d58 (patch) | |
| tree | 8b23d925cbf95149245785ddd13139441a7354a7 /test cases/unit | |
| parent | 2bb4ec19f2ce290a348d54185cf5931c6d37aa58 (diff) | |
| download | meson-feff2630ae151f4a89f12f5b19babce605e64d58.tar.gz | |
ast: resolve simple arithmetic nodes
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/55 introspection/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/unit/55 introspection/meson.build b/test cases/unit/55 introspection/meson.build index 55e80c116..5dd1b33d7 100644 --- a/test cases/unit/55 introspection/meson.build +++ b/test cases/unit/55 introspection/meson.build @@ -20,9 +20,12 @@ endif subdir('sharedlib') subdir('staticlib') +var1 = '1' +var2 = '2' var3 = 'test3' -t1 = executable('test1', 't1.cpp', link_with: [sharedlib], install: true, build_by_default: get_option('test_opt2')) +t1 = executable('test' + var1, ['t1.cpp'], link_with: [sharedlib], install: true, build_by_default: get_option('test_opt2')) +#t2 = executable('test@0@'.format('' + '@0@'.format(var2)), 't2.cpp', link_with: [staticlib]) t2 = executable('test2', 't2.cpp', link_with: [staticlib]) t3 = executable(var3, 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1]) |
