mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
25 lines
592 B
Python
25 lines
592 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Jaap Haitsma, 2008
|
|
|
|
# the following two variables are used by the target "waf dist"
|
|
VERSION = '0.0.1'
|
|
APPNAME = 'vala-gtk-example'
|
|
|
|
# these variables are mandatory ('/' are converted automatically)
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
opt.load('compiler_c')
|
|
opt.load('vala')
|
|
|
|
def configure(conf):
|
|
conf.load('compiler_c vala')
|
|
conf.check_cfg(package='glib-2.0', uselib_store='GLIB', atleast_version='2.10.0', mandatory=1, args='--cflags --libs')
|
|
conf.recurse('resources')
|
|
|
|
def build(bld):
|
|
bld.recurse('shlib multi-file stlib resources')
|
|
|