mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 11:51:20 +01:00
11 lines
181 B
Python
11 lines
181 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Joshua Simmons 2010
|
|
|
|
bld.program(
|
|
target = 'foobar',
|
|
uselib = 'GLIB',
|
|
source = ['foo/foo.vala', 'bar/bar.vala', 'main.vala']
|
|
)
|
|
|