Update of /cvsroot/cppunit/cppunit2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30755
Modified Files:
sconstruct
Log Message:
* scons can be used to build cppunit 2 using mingw
Index: sconstruct
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/sconstruct,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** sconstruct 1 Feb 2004 10:18:01 -0000 1.1
--- sconstruct 23 Feb 2005 23:13:16 -0000 1.2
***************
*** 1,9 ****
import sys
! base_env = Environment( CCFLAGS = '-GX -GR -nologo',
! CPPPATH = '#include',
! LIBPATH = '#libs' )
! Export( 'base_env' )
SConscript( 'src/cpput/SConscript', build_dir='#buildscons/cpput', duplicate=0 )
--- 1,11 ----
import sys
! #env = Environment( CCFLAGS = '-GX -GR -nologo',
! env = Environment( CCFLAGS = '',
! CPPPATH = '#include',
! LIBPATH = '#libs',
! tools=['mingw'] )
! Export( 'env' )
SConscript( 'src/cpput/SConscript', build_dir='#buildscons/cpput', duplicate=0 )
|