[Cppunit-cvs] cppunit2 sconstruct,1.20,1.21
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-11-10 09:15:21
|
Update of /cvsroot/cppunit/cppunit2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv484 Modified Files: sconstruct Log Message: - added 'check' target to build script to run all unit tests. Index: sconstruct =================================================================== RCS file: /cvsroot/cppunit/cppunit2/sconstruct,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** sconstruct 10 Nov 2005 09:05:41 -0000 1.20 --- sconstruct 10 Nov 2005 09:15:12 -0000 1.21 *************** *** 93,96 **** --- 93,98 ---- target_check_alias = env.Alias( check_alias_name, exe, exe[0].abspath ) env.AlwaysBuild( target_check_alias ) + check_alias = env.Alias( 'check' ) + env.Depends( check_alias, target_check_alias ) def buildQTApplication( env, ui_sources, target_sources, target_name ): *************** *** 119,122 **** --- 121,126 ---- SConscript( target, build_dir=target_build_dir, duplicate=0 ) + env.Alias( 'check' ) + buildProjectInDirectory( 'src/cpput' ) buildProjectInDirectory( 'src/cpptl' ) |