blob: 4832bd49c2fae76231e8a0a7058e7d8880c56097 (
plain)
1
2
3
4
5
6
7
8
|
# Check that skip_rest only exits subdir, not the whole script.
# Should create an error because main.cpp does not exists.
project('example exit', 'cpp')
subdir('subdir')
message('Good')
executable('main', 'main.cpp')
|