18 lines
400 B
Meson
18 lines
400 B
Meson
message('Found CXX compiler: ' + meson.get_compiler('cpp').get_id())
|
|
message('C++ standard set to: ' + get_option('cpp_std'))
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
ignore_unused_args = '-Wno-unused-command-line-argument'
|
|
|
|
if not meson.is_subproject()
|
|
add_global_arguments(ignore_unused_args, language: 'cpp')
|
|
add_global_arguments(ignore_unused_args, language: 'c')
|
|
endif
|
|
|
|
|
|
subdir('CPPC')
|
|
subdir('FC')
|
|
|
|
|