Ryujinx-GtkSharp/atk/meson.build

46 lines
1.3 KiB
Meson
Raw Normal View History

2017-08-24 15:21:41 +02:00
snk = join_paths(meson.current_source_dir(), '..', 'gtk-sharp.snk')
pkg = 'atk'
2017-08-24 15:21:41 +02:00
assembly_name = pkg + '-sharp'
raw_api_fname = join_paths(meson.current_source_dir(), pkg + '-api.raw')
2017-08-24 15:21:41 +02:00
metadata_fname = join_paths(meson.current_source_dir(), 'Atk.metadata')
glueincludes = 'atk/atk.h'
gluefile = join_paths(meson.current_build_dir(), 'generate.c')
configure_file(input: assembly_name + '.dll.config.in',
output: assembly_name + '.dll.config',
configuration : remap_dl_data)
subdir('generated')
sources = [
'Global.cs',
'Hyperlink.cs',
'Misc.cs',
'Object.cs',
'SelectionAdapter.cs',
'TextAdapter.cs',
'TextChangedDetail.cs',
'Util.cs',
]
atk_sharp = library(assembly_name, source_gen, sources,
cs_args: ['-unsafe', '-keyfile:' + snk],
link_with: glib_sharp,
install: true,
install_dir: lib_install_dir
2017-08-24 15:21:41 +02:00
)
gluegen = custom_target('atkgluegen',
input: raw_api_fname,
output: 'generate.c',
command: [generate_api, '--fakeglue'],
depends: [source_gen])
library('atksharpglue-3', gluegen,
dependencies: [glib_dep, gio_dep, atk_dep],
install: true)
2017-08-24 15:21:41 +02:00
install_infos += [assembly_name, atk_sharp.full_path()]
atk_sharp_dep = declare_dependency(link_with: [glib_sharp, atk_sharp])