segatools/meson.build
Tau 55c68c8094 cardhook: Wire up aimeReaderHost hook
This is an external AiMe driver process that is only used by
Chunithm AFAIK. The wiring can be easily re-used for other games.
2018-11-20 20:33:17 -05:00

28 lines
452 B
Meson

project('capnhook', 'c', version: '0.1.0')
add_project_arguments(
'-Wall',
'-DCOBJMACROS',
'-ffunction-sections',
'-fdata-sections',
language: 'c',
)
add_project_link_arguments(
'-Wl,--gc-sections',
'-static-libgcc',
language: 'c',
)
inc = include_directories('.')
capnhook = subproject('capnhook')
subdir('board')
subdir('jvs')
subdir('nu')
subdir('util')
subdir('cardhook')
subdir('chunihook')
subdir('minihook')