1
0
mirror of https://github.com/GNOME/gedit synced 2024-07-05 02:20:09 +00:00
gedit/plugins/meson.build
Sébastien Wilmet 5164375a72 Revert "Merge branch 'master' into wip/next"
This reverts commit 661db63099, reversing
changes made to a8cb2b57f9.

It is to basically come back to:
commit a8cb2b57f9
the previous version of gedit based on the Tepl library.

The goal is to continue the gedit development (on master), but based on
the Tepl library.
2022-07-15 10:49:56 +02:00

32 lines
681 B
Meson

# Keep the autotools convention for shared module suffix because GModule
# depends on it: https://gitlab.gnome.org/GNOME/glib/issues/520
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('time')
if get_option('plugin_externaltools')
subdir('externaltools')
endif