The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
281 B

sources = [
files(
'native.c',
'com_mesonbuild_JniTest.c',
),
native_headers
]
jnijava = shared_module(
'jnijava',
sources,
dependencies : [jni_dep],
include_directories : [native_header_includes]
)
jnijava_dep = declare_dependency(
link_with : jnijava
)