1
0
Fork 0
gedit/plugins/quickhighlight/meson.build
Daniel Baumann 61eec86fe3
Adding upstream version 48.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 19:48:29 +02:00

22 lines
557 B
Meson

plugin_quickhighlight_sources = files(
'gedit-quick-highlight-plugin.c',
)
shared_module(
'quickhighlight',
sources: plugin_quickhighlight_sources,
include_directories: root_include_dir,
dependencies: libgedit_dep,
install: true,
install_dir: get_option('libdir') / 'gedit/plugins',
name_suffix: module_suffix,
)
custom_target(
'quickhighlight.plugin',
input: 'quickhighlight.plugin.desktop.in',
output: 'quickhighlight.plugin',
command: msgfmt_plugin_cmd,
install: true,
install_dir: get_option('libdir') / 'gedit/plugins',
)