waf

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

wscript_build (219B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 
      4 bld(
      5 	features = 'cxx cxxprogram test',
      6 	source   = 'AccumulatorTest.cpp',
      7 	target   = 'unit_test_program',
      8 	use      = 'unittestmain useless CPPUNIT',
      9 	ut_cwd   = bld.path,
     10 )
     11