feat(build-check): added setup checks for stl compatibility

build-check checks for print and format headers from stl
This commit is contained in:
2026-01-31 10:12:52 -05:00
parent 38150e3a8d
commit d19a5ae36d
3 changed files with 38 additions and 0 deletions

14
build-check/meson.build Normal file
View File

@@ -0,0 +1,14 @@
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'
add_global_arguments(ignore_unused_args, language: 'cpp')
add_global_arguments(ignore_unused_args, language: 'c')
subdir('CPPC')