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.
16 lines
562 B
16 lines
562 B
5 years ago
|
project('clash', 'c')
|
||
|
|
||
|
# This setup causes a namespace clash when two Meson targets would
|
||
|
# produce a Ninja targets with the same name. It only works on
|
||
|
# unix, because on Windows the target has a '.exe' suffix.
|
||
|
#
|
||
|
# This test might fail to work on different backends or when
|
||
|
# output location is redirected.
|
||
|
|
||
|
if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'
|
||
|
error('MESON_SKIP_TEST test only works on platforms where executables have no suffix.')
|
||
|
endif
|
||
|
|
||
|
executable('clash', 'clash.c')
|
||
|
run_target('clash', command: ['echo', 'clash 1'])
|