- rename some macro with RTTI - add RTTI_MAGIC in object header - add new rtti api
14 lines
397 B
Meson
14 lines
397 B
Meson
librtti_test_srcs = [
|
|
'test.c',
|
|
'test_iter.c',
|
|
'test_invalid_obj.c',
|
|
]
|
|
|
|
unity_dep = dependency('unity')
|
|
librtti_test_deps = [dep_librtti, unity_dep]
|
|
|
|
librtti_test = executable('rtti_test',
|
|
librtti_test_srcs,
|
|
include_directories: [incdir],
|
|
dependencies: librtti_test_deps,
|
|
install: true)
|