project( 'libmodxml', 'cpp', version : '0.1', meson_version: '>= 0.58', default_options : [ 'warning_level=3', 'cpp_std=c++20', 'cpp_rtti=false', 'cpp_eh=none', 'b_ndebug=if-release', ], ) gtest_dep = dependency( 'gtest', version: '>= 1.10.0', main: true, fallback: ['gtest', 'gtest_main_dep']) gmock_dep = dependency( 'gmock', version: '>= 1.10.0', main: false, fallback: ['gtest', 'gmock_dep']) subdir('base') subdir('utf') subdir('sax') run_target('iwyu', command: 'scripts/iwyu.sh')