librtti/meson.build
Rongsong Shen c8c1749347 Import source to librtti
Summary:

- Import initial source

Test Plan:
NA
2026-01-29 17:23:07 +08:00

18 lines
384 B
Meson

project('librtti',
['c'],
version: '0.0.1',
meson_version: '>=1.5',
default_options: [
'c_std=gnu17'])
add_project_arguments(['-ggdb',
'-g3',
'-Wno-cpp'],
language: ['c'])
subdir('src')
if get_option('with_debug') == true
subdir('testsuite')
endif
# subdir('examples')