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.
13 lines
263 B
13 lines
263 B
5 years ago
|
# Should run, even though main.cpp does not exist and we call error in the last line.
|
||
|
# subdir_done jumps to end, so both lines are not executed.
|
||
|
|
||
|
project('example exit', 'cpp')
|
||
|
|
||
|
if true
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
executable('main', 'main.cpp')
|
||
|
error('Unreachable')
|
||
|
|