Added initial settings schema.

This commit is contained in:
Rowan Lewis
2018-03-16 20:38:37 +01:00
parent fdf3908494
commit 97e402b980
3 changed files with 63 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
import subprocess
schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
if not os.environ.get('DESTDIR'):
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', schemadir])