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.
9 lines
298 B
9 lines
298 B
project('c++ test', 'cpp') |
|
|
|
if meson.get_compiler('cpp').get_id() == 'intel' |
|
# Error out if the -std=xxx option is incorrect |
|
add_project_arguments('-diag-error', '10159', language : 'cpp') |
|
endif |
|
|
|
exe = executable('trivialprog', 'trivial.cc', extra_files : 'something.txt') |
|
test('runtest', exe)
|
|
|