1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-28 14:55:26 +00:00

meson: Compile schemas in build directory

To make it easier to run from the build directory without having to install.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-06-03 12:54:46 +02:00
parent 23944acc91
commit 3d51d627d3

View file

@ -68,7 +68,11 @@ install_data(
) )
) )
install_data('sm.puri.Calls.gschema.xml', schema_src = 'sm.puri.Calls.gschema.xml'
compiled = gnome.compile_schemas(build_by_default: true,
depends_files: files(schema_src))
install_data(schema_src,
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas') install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
) )