26 lines
651 B
Meson
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')
|