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.
19 lines
494 B
19 lines
494 B
4 years ago
|
project('introspect buildargs', ['c'], default_options: ['c_std=c99', 'cpp_std=c++14', 'buildtype=release'])
|
||
5 years ago
|
|
||
|
subA = subproject('projectA')
|
||
|
|
||
|
target_name = 'MAIN'
|
||
|
target_src = ['main.c']
|
||
|
|
||
|
foo = false
|
||
|
|
||
|
executable(target_name, target_src, build_by_default : foo)
|
||
|
|
||
3 years ago
|
r = run_command(find_program('c_compiler.py'), check: false)
|
||
5 years ago
|
if r.returncode() != 0
|
||
|
error('FAILED')
|
||
|
endif
|
||
|
|
||
|
add_languages(r.stdout().strip(), required: true)
|
||
|
add_languages('afgggergearvearghergervergreaergaergasv', required: false)
|