2024-04-17 16:33:24 +02:00
|
|
|
# Copyright 2016, 2017 Centricular
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-12-20 23:37:24 +01:00
|
|
|
gdbus_codegen_files = [
|
|
|
|
'__init__.py',
|
|
|
|
'codegen.py',
|
|
|
|
'codegen_main.py',
|
|
|
|
'codegen_docbook.py',
|
2022-12-29 13:42:12 +01:00
|
|
|
'codegen_md.py',
|
2022-01-19 14:55:29 +01:00
|
|
|
'codegen_rst.py',
|
2016-12-20 23:37:24 +01:00
|
|
|
'dbustypes.py',
|
|
|
|
'parser.py',
|
|
|
|
'utils.py',
|
|
|
|
]
|
|
|
|
|
|
|
|
gdbus_codegen_conf = configuration_data()
|
|
|
|
gdbus_codegen_conf.set('VERSION', glib_version)
|
2020-01-27 11:36:03 +01:00
|
|
|
gdbus_codegen_conf.set('MAJOR_VERSION', major_version)
|
|
|
|
gdbus_codegen_conf.set('MINOR_VERSION', minor_version)
|
2024-03-25 20:17:59 +01:00
|
|
|
gdbus_codegen_conf.set('PYTHON', python.full_path())
|
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'),
|
2022-09-09 19:56:35 +02:00
|
|
|
install_tag : 'bin-devel',
|
2016-12-09 20:30:22 +01:00
|
|
|
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
|
|
|
|
2020-02-07 17:34:13 +01:00
|
|
|
codegen_dir = join_paths(glib_datadir, 'glib-2.0', 'codegen')
|
2016-12-20 23:37:24 +01:00
|
|
|
|
2022-11-24 13:09:55 +01:00
|
|
|
gdbus_codegen_built_files = []
|
2023-10-25 12:20:36 +02:00
|
|
|
gdbus_codegen_built_targets = []
|
2022-11-24 13:09:55 +01:00
|
|
|
gdbus_codegen_built_files += configure_file(input : 'config.py.in',
|
2017-10-11 12:36:58 +02:00
|
|
|
output : 'config.py',
|
|
|
|
install_dir : codegen_dir,
|
2022-09-18 22:51:55 +02:00
|
|
|
install_tag : 'bin-devel',
|
2017-10-11 12:36:58 +02:00
|
|
|
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
|
2023-10-25 12:20:36 +02:00
|
|
|
gdbus_codegen_built_targets += fs.copyfile(f, f,
|
2023-10-27 05:21:58 +02:00
|
|
|
install : true,
|
2023-10-25 12:20:36 +02:00
|
|
|
install_dir : codegen_dir,
|
|
|
|
install_tag : 'bin-devel')
|
2016-12-20 23:37:24 +01:00
|
|
|
endforeach
|