mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-22 22:38:12 +03:00
22 lines
351 B
Meson
22 lines
351 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('.')
|
|
|
|
subdir('hook')
|
|
subdir('hooklib')
|
|
subdir('inject')
|