2016-12-20 23:37:24 +01:00
|
|
|
gdbus_codegen_files = [
|
|
|
|
'__init__.py',
|
|
|
|
'codegen.py',
|
|
|
|
'codegen_main.py',
|
|
|
|
'codegen_docbook.py',
|
|
|
|
'dbustypes.py',
|
|
|
|
'parser.py',
|
|
|
|
'utils.py',
|
|
|
|
]
|
|
|
|
|
|
|
|
gdbus_codegen_conf = configuration_data()
|
|
|
|
gdbus_codegen_conf.set('VERSION', glib_version)
|
2018-07-18 17:03:22 +02:00
|
|
|
gdbus_codegen_conf.set('PYTHON', python_name)
|
2017-09-12 12:16:57 +02:00
|
|
|
gdbus_codegen_conf.set('DATADIR', glib_datadir)
|
2016-12-20 23:37:24 +01:00
|
|
|
|
|
|
|
# Install gdbus-codegen executable
|
|
|
|
gdbus_codegen = configure_file(input : 'gdbus-codegen.in',
|
|
|
|
output : 'gdbus-codegen',
|
2016-12-09 20:30:22 +01:00
|
|
|
install_dir : get_option('bindir'),
|
|
|
|
configuration : gdbus_codegen_conf
|
|
|
|
)
|
2018-07-19 12:23:37 +02:00
|
|
|
# Provide tools for others when we're a subproject and they use the Meson GNOME module
|
|
|
|
meson.override_find_program('gdbus-codegen', gdbus_codegen)
|
2016-12-09 20:30:22 +01:00
|
|
|
|
|
|
|
codegen_dir = join_paths(get_option('datadir'), 'glib-2.0/codegen')
|
2016-12-20 23:37:24 +01:00
|
|
|
|
2017-10-11 12:36:58 +02:00
|
|
|
gdbus_codegen_built_files = []
|
|
|
|
gdbus_codegen_built_files += configure_file(input : 'config.py.in',
|
|
|
|
output : 'config.py',
|
|
|
|
install_dir : codegen_dir,
|
|
|
|
configuration : gdbus_codegen_conf)
|
2016-12-20 23:37:24 +01:00
|
|
|
|
|
|
|
foreach f : gdbus_codegen_files
|
|
|
|
# Copy these into the builddir so that gdbus-codegen can be used uninstalled
|
|
|
|
# and then install it too so that it can be used after installation
|
2017-10-11 12:36:58 +02:00
|
|
|
gdbus_codegen_built_files += configure_file(input : f, output : f,
|
|
|
|
install_dir : codegen_dir,
|
2018-07-03 16:47:52 +02:00
|
|
|
copy : true)
|
2016-12-20 23:37:24 +01:00
|
|
|
endforeach
|