1
0
mirror of https://github.com/GNOME/gedit synced 2024-07-02 15:58:48 +00:00
gedit/plugins/externaltools/meson.build
2024-06-26 23:48:50 +02:00

33 lines
675 B
Meson

subdir('scripts')
subdir('tools')
subdir('data')
externaltools_gschema_file = files('org.gnome.gedit.plugins.externaltools.gschema.xml')
install_data(
externaltools_gschema_file,
install_dir: get_option('datadir') / 'glib-2.0/schemas',
)
if xmllint.found()
test(
'validate-externaltools-gschema',
xmllint,
args: [
'--noout',
'--dtdvalid', gschema_dtd,
externaltools_gschema_file,
]
)
endif
custom_target(
'externaltools.plugin',
input: 'externaltools.plugin.desktop.in',
output: 'externaltools.plugin',
command: msgfmt_plugin_cmd,
install: true,
install_dir: get_option('libdir') / 'gedit/plugins',
)
subdir('tests')