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.
10 lines
310 B
10 lines
310 B
5 years ago
|
project('dub', 'd')
|
||
7 years ago
|
|
||
7 years ago
|
if meson.get_compiler('d').get_id() == 'dmd'
|
||
|
if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'
|
||
|
error('MESON_SKIP_TEST Windows test environment lacks multiple D compilers.')
|
||
|
endif
|
||
|
endif
|
||
|
|
||
7 years ago
|
dependency('dubtestproject:test2', method: 'dub') # Compiler mismatch
|