forked from TeamTofuShop/segatools
Set up Meson build system
This commit is contained in:
18
meson.build
Normal file
18
meson.build
Normal file
@ -0,0 +1,18 @@
|
||||
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')
|
Reference in New Issue
Block a user