mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
This causes meson to automatically build the clapper gsettings schemas and set GSETTINGS_SCHEMA_DIR to the correct location within the devenv. This means that can now be ran without needing to install it somewhere using: meson devenv -C <builddir> clapper exit More devenv overrides should be investigated (such as automatically adopting the correct directory for translated locales etc.) Signed-off-by: Florian "sp1rit" <sp1rit@disroot.org>
9 lines
236 B
Meson
9 lines
236 B
Meson
gnome.compile_schemas(
|
|
build_by_default: true,
|
|
depend_files: ['com.github.rafostar.Clapper.gschema.xml']
|
|
)
|
|
|
|
install_data('com.github.rafostar.Clapper.gschema.xml',
|
|
install_dir: join_paths(prefix, datadir, 'glib-2.0', 'schemas')
|
|
)
|