Import source to librtti

Summary:

- Import initial source

Test Plan:
NA
This commit is contained in:
Rongsong Shen 2026-01-29 17:22:53 +08:00
commit c8c1749347
23 changed files with 969 additions and 0 deletions

18
meson.build Normal file
View file

@ -0,0 +1,18 @@
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')