Added meson build files and manifests for dlls.
Works, builds both native linux and cross-compiles mingw-w64 variants. Need to work out copying appropriate dlls into the mkxp runtime folder. Signed-off-by: Marty Plummer <ntzrmtthihu777@gmail.com>
This commit is contained in:
parent
01e17ed5c6
commit
ed29332523
12 changed files with 318 additions and 1 deletions
27
binding-mri/meson.build
Normal file
27
binding-mri/meson.build
Normal file
|
@ -0,0 +1,27 @@
|
|||
binding_src = [
|
||||
'audio-binding.cpp',
|
||||
'binding-mri.cpp',
|
||||
'binding-util.cpp',
|
||||
'bitmap-binding.cpp',
|
||||
'etc-binding.cpp',
|
||||
'filesystem-binding.cpp',
|
||||
'font-binding.cpp',
|
||||
'graphics-binding.cpp',
|
||||
'input-binding.cpp',
|
||||
'module_rpg.cpp',
|
||||
'plane-binding.cpp',
|
||||
'sprite-binding.cpp',
|
||||
'table-binding.cpp',
|
||||
'tilemap-binding.cpp',
|
||||
'tilemapvx-binding.cpp',
|
||||
'viewport-binding.cpp',
|
||||
'window-binding.cpp',
|
||||
'windowvx-binding.cpp'
|
||||
]
|
||||
ruby = dependency('-'.join(['ruby', get_option('MRIVERSION')]))
|
||||
binding = build_target('binding',
|
||||
binding_src,
|
||||
dependencies : [ ruby, sdl2, sigcxx ],
|
||||
include_directories : incdirs,
|
||||
target_type : 'static_library')
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue