[Opal-commits] opal/samples/playpen SConstruct,1.2,1.3
Status: Inactive
Brought to you by:
tylerstreeter
|
From: tylerstreeter <tyl...@us...> - 2005-04-19 14:29:06
|
Update of /cvsroot/opal/opal/samples/playpen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22224/samples/playpen Modified Files: SConstruct Log Message: small fix for playpen SConstruct Index: SConstruct =================================================================== RCS file: /cvsroot/opal/opal/samples/playpen/SConstruct,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SConstruct 19 Apr 2005 14:02:26 -0000 1.2 --- SConstruct 19 Apr 2005 14:28:57 -0000 1.3 *************** *** 7,22 **** env = Environment( ENV = os.environ, - # CXX = [''], - # CCFLAGS = [''], CXXFLAGS = ['-DGCC_3_1', '-DEXT_HASH'], - # CPPPATH = [''], - # LINK = [''], - # LINKFLAGS = ['pkg-config --libs OGRE'], - # AR = [''], - # ARFLAGS = [''], - # LIBPATH = [''], - # SHLIBSUFFIX='.so', LIBS = ['opal-ode', 'OgreMain'] ) ! env.Program('playpen', sources) --- 7,22 ---- env = Environment( ENV = os.environ, CXXFLAGS = ['-DGCC_3_1', '-DEXT_HASH'], LIBS = ['opal-ode', 'OgreMain'] ) ! # Build the executable. ! exe = env.Program('playpen', sources) ! ! # Install the executable. ! inst = env.Install('../bin/release', exe) ! ! # Tell scons to build and install the executable by default. ! env.Default(exe) ! env.Default(inst) ! |