waf

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

wscript_build (220B)


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