1
0
mirror of https://github.com/GNOME/gedit synced 2024-06-30 23:15:01 +00:00
gedit/plugins/meson.build
Sébastien Wilmet 91043c4a6a plugins: add textsize, coming from the gedit-plugins repo
The textsize/ directory has been copied as-is from the gedit-plugins
repo (after some adaptations in gedit-plugins).

The user manual page will be moved in a follow-up commit.

Fixes https://gitlab.gnome.org/GNOME/gedit/-/issues/482
2024-06-27 05:13:58 +02:00

34 lines
778 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('pythonconsole')
subdir('quickhighlight')
subdir('quickopen')
subdir('snippets')
subdir('sort')
subdir('spell')
subdir('textsize')
subdir('time')
if get_option('buggy_plugins')
subdir('externaltools')
endif