blob: 7e3c59a61cc57212f0f9732a4ada224b8e226885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
schema_xml = files(
'org.gnome.shotwell-extras.gschema.xml',
'org.gnome.shotwell.gschema.xml',
'org.yorba.shotwell-extras.gschema.xml',
'org.yorba.shotwell.gschema.xml'
)
install_data(schema_xml,
install_dir : join_paths(get_option('datadir'), 'glib-2.0', 'schemas'))
gnome.compile_schemas(
depend_files : schema_xml
)
|