The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
806 B
23 lines
806 B
7 years ago
|
project('dub-example', 'd')
|
||
|
|
||
|
dub_exe = find_program('dub', required : false)
|
||
|
if not dub_exe.found()
|
||
|
error('MESON_SKIP_TEST: Dub not found')
|
||
|
endif
|
||
|
|
||
|
urld_dep = dependency('urld', method: 'dub')
|
||
|
|
||
|
test_exe = executable('test-urld', 'test.d', dependencies: urld_dep)
|
||
|
test('test urld', test_exe)
|
||
|
|
||
|
# If you want meson to generate/update a dub.json file
|
||
|
dlang = import('dlang')
|
||
|
dlang.generate_dub_file(meson.project_name().to_lower(), meson.source_root(),
|
||
|
authors: 'Meson Team',
|
||
|
description: 'Test executable',
|
||
|
copyright: 'Copyright © 2018, Meson Team',
|
||
|
license: 'MIT',
|
||
|
sourceFiles: 'test.d',
|
||
|
targetType: 'executable',
|
||
|
dependencies: urld_dep
|
||
|
)
|