Add save-dng setting

This commit is contained in:
Martijn Braam
2021-06-14 00:32:55 +02:00
parent 295476c3f6
commit 5ad97d03f6
9 changed files with 66 additions and 3 deletions

View File

@@ -13,3 +13,9 @@ install_data('org.postmarketos.Megapixels.svg',
install_data(['postprocess.sh'],
install_dir: get_option('datadir') / 'megapixels/',
install_mode: 'rwxr-xr-x')
settings_schemas = ['org.postmarketos.Megapixels.gschema.xml']
schemas_dir = get_option('prefix') / get_option('datadir') / 'glib-2.0' / 'schemas'
install_data(settings_schemas, install_dir: schemas_dir)
gnome.compile_schemas(depend_files: files(settings_schemas))
meson.add_install_script('glib-compile-schemas', schemas_dir)