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>
28 lines
600 B
Meson
28 lines
600 B
Meson
binding_src = [
|
|
'audio-binding.cpp',
|
|
'binding-mruby.cpp',
|
|
'binding-util.cpp',
|
|
'bitmap-binding.cpp',
|
|
'etc-binding.cpp',
|
|
'font-binding.cpp',
|
|
'graphics-binding.cpp',
|
|
'input-binding.cpp',
|
|
'module_rpg.c',
|
|
'mrb-ext/file.cpp',
|
|
'mrb-ext/kernel.cpp',
|
|
'mrb-ext/marshal.cpp',
|
|
'mrb-ext/rwmem.cpp',
|
|
'mrb-ext/time.cpp',
|
|
'plane-binding.cpp',
|
|
'sprite-binding.cpp',
|
|
'table-binding.cpp',
|
|
'tilemap-binding.cpp',
|
|
'viewport-binding.cpp',
|
|
'window-binding.cpp',
|
|
]
|
|
|
|
binding = static_library('binding',
|
|
binding_src,
|
|
include_directories : incdirs)
|
|
|
|
error('mruby support is not yet implemented in meson')
|