[Cppunit-cvs] cppunit2/src/cpputtest SConscript,1.7,1.8
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-02-28 22:12:54
|
Update of /cvsroot/cppunit/cppunit2/src/cpputtest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32753/src/cpputtest Modified Files: SConscript Log Message: * moved texttestdriver.h class implementations into a .cpp Index: SConscript =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpputtest/SConscript,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SConscript 27 Feb 2005 17:42:32 -0000 1.7 --- SConscript 28 Feb 2005 22:11:56 -0000 1.8 *************** *** 1,6 **** # cpputtest build script ! Import( 'env' ) ! env = env.Copy( LIBPATH = '#libs' ) cpputtest_sources=""" --- 1,5 ---- # cpputtest build script ! Import( 'env_testing' ) cpputtest_sources=""" *************** *** 18,27 **** """.split() - cpputtest_env = env.Copy(LIBS = ['cpput']) #cpputtest_env = env.Copy(LIBS = ['cpput-vc6-rd']) #cpputtest_env.Append( CCFLAGS = ' -DCPPUT_DLL' ) ! cpputtest_exe = cpputtest_env.Program( target='cpputtest', ! source=cpputtest_sources ) #cpputtest_env.Depends( cpputtest_exe, '#libs/cpput-vc6-rd.lib' ) --- 17,25 ---- """.split() #cpputtest_env = env.Copy(LIBS = ['cpput-vc6-rd']) #cpputtest_env.Append( CCFLAGS = ' -DCPPUT_DLL' ) ! cpputtest_exe = env_testing.Program( target='cpputtest', ! source=cpputtest_sources ) #cpputtest_env.Depends( cpputtest_exe, '#libs/cpput-vc6-rd.lib' ) *************** *** 31,33 **** bin_dir='#bin' ! env.Install( bin_dir, cpputtest_exe ) --- 29,31 ---- bin_dir='#bin' ! env_testing.Install( bin_dir, cpputtest_exe ) |