1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# 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')
|