waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript_build (181B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Joshua Simmons 2010
      4 
      5 bld.program(
      6 	target   = 'foobar',
      7 	uselib   = 'GLIB',
      8 	source   = ['foo/foo.vala', 'bar/bar.vala', 'main.vala']
      9 	)
     10