1
0
Fork 0
gedit/plugins/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

26 lines
651 B
Meson

# Keep the autotools convention for shared module suffix because GModule
# depends on it: https://gitlab.gnome.org/GNOME/glib/issues/520
# TODO: the GLib issue is fixed/closed, so adapt the build instructions accordingly.
module_suffix = []
if host_machine.system() == 'darwin'
module_suffix = 'so'
endif
msgfmt_plugin_cmd = [
find_program('msgfmt'),
'--desktop',
'--keyword=Name',
'--keyword=Description',
'--template=@INPUT@',
'-d', join_paths(srcdir, 'po'),
'--output=@OUTPUT@'
]
subdir('docinfo')
subdir('filebrowser')
subdir('modelines')
subdir('quickhighlight')
subdir('sort')
subdir('spell')
subdir('textsize')
subdir('time')