2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00
waf/demos/glib2/wscript
dffischer 15c45b365d glib2: Compile schemas per directory (#1881)
* glib2: Compile schemas per directory

By changing GSETTINGSSCHEMADIR during the build setup or on single tasks
or generators, the user may place schemas in various locations. Adding a
post build function for each of this location compiles all of them
instead of only one global directory.

* glib2: Notify user about failed schema compilation

* glib2: Demo schemas installed to multiple places

A new schema lacking lacking any enumerations was introduced. Installing
it isolated simplifies the generator creation to the essential
components demonstrated.
2016-12-22 18:31:07 +01:00

58 lines
1.6 KiB
Python

#! /usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2005, 2010 (ita)
VERSION='0.0.1'
APPNAME='glib2_test'
top = '.'
out = 'build'
import os
def options(opt):
opt.load ('compiler_c glib2')
def configure(conf):
conf.load ('compiler_c glib2')
conf.check_cfg (package='glib-2.0', uselib_store='GLIB', atleast_version='2.25.0',
args='--cflags --libs')
conf.check_cfg (package='gio-2.0', uselib_store='GIO', atleast_version='2.25.0',
args='--cflags --libs')
conf.check_cfg (package='gobject-2.0', uselib_store='GOBJECT', atleast_version='2.25.0',
args='--cflags --libs')
def build(bld):
app = bld (
features = 'c cprogram glib2',
use = 'GLIB GIO GOBJECT',
source = 'main.c org.glib2.test.gresource.xml',
target = 'gsettings-test'
## An alternate way of doing this (no need to call add_ functions):
# settings_enum_namespace = 'org.gsettings.test'
# settings_enum_files = ['enums.h']
# settings_schema_files = ['org.gsettings.test.gschema.xml']
)
app.add_settings_enums ('org.gsettings.test', 'enums.h')
app.add_settings_schemas (['org.gsettings.test.gschema.xml',
'org.gsettings.test-2.gschema.xml'])
app.add_marshal_file('marshal.list', 'test_marshal')
bld(
features = 'gresource',
source = 'org.glib2.test.gresource.xml',
install_path = 'lib/glib2_test'
)
# Install a schema to a different location.
# It will be compiled to a cache file besides it.
bld(
features = 'glib2',
settings_schema_files = ['org.gsettings.simple.gschema.xml']
).env.GSETTINGSSCHEMADIR = os.path.join('etc', 'glib-2.0', 'schemas')