waf

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

wscript (223B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 
      4 def build(bld):
      5 	bld.recurse('test0 test1 test2 test3')
      6 
      7 	obj = bld(
      8 			features = 'cxx cxxstlib',
      9 			source   = 'main.cpp',
     10 			use      = 'CPPUNIT',
     11 			target   = 'unittestmain')
     12