wscript_build (269B)
1 #! /usr/bin/env python 2 # encoding: utf-8 3 4 bld.env.NARG = '-flag2' 5 bld( 6 features = 'cxx cxxprogram test', 7 source = 'HelloWorldTest.cpp', 8 target = 'unit_test_program', 9 use = 'unittestmain useless CPPUNIT', 10 ut_str = '${SRC[0].abspath()} -flag1 ${NARG}' 11 ) 12