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