diff options
Diffstat (limited to 'test cases/d/14 dub with deps/meson.build')
-rw-r--r-- | test cases/d/14 dub with deps/meson.build | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test cases/d/14 dub with deps/meson.build b/test cases/d/14 dub with deps/meson.build new file mode 100644 index 0000000..08f3080 --- /dev/null +++ b/test cases/d/14 dub with deps/meson.build @@ -0,0 +1,34 @@ +project('dub-with-deps-example', ['d']) + +dub_exe = find_program('dub', required : false) +if not dub_exe.found() + error('MESON_SKIP_TEST: Dub not found') +endif + +if meson.get_compiler('d').get_id() == 'gcc' + error('MESON_SKIP_TEST: can\'t build dependencies with GDC') +elif meson.get_compiler('d').get_id() == 'llvm' + dc = 'ldc2' +elif meson.get_compiler('d').get_id() == 'dmd' + dc = 'dmd' +endif + +arch = host_machine.cpu_family() + +if host_machine.system() == 'windows' + # check if toolchain is 32bits + sz = meson.get_compiler('d').sizeof('void*') + if arch == 'x86' or sz == 4 + arch = 'x86_mscoff' + endif +endif + +run_command('dub', 'run', 'dub-build-deep', '--yes', '--', 'xlsx', '--compiler', dc, '--arch', arch, + check: true, +) + +xlsx_dep = dependency('xlsx', method: 'dub') + +test_exe = executable('test-test6', 'test.d', dependencies: xlsx_dep) + +test('test dub with deps', test_exe) |