[Opal-commits] opal SConstruct,1.6,1.7 todo.txt,1.48,1.49
Status: Inactive
Brought to you by:
tylerstreeter
|
From: tylerstreeter <tyl...@us...> - 2005-03-04 23:27:02
|
Update of /cvsroot/opal/opal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21757 Modified Files: SConstruct todo.txt Log Message: added a define to conditionally compile mesh support (mainly for ODE on IRIX which can't use trimeshes); removed some old commented-out code Index: SConstruct =================================================================== RCS file: /cvsroot/opal/opal/SConstruct,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SConstruct 25 Feb 2005 06:40:26 -0000 1.6 --- SConstruct 4 Mar 2005 23:26:53 -0000 1.7 *************** *** 60,63 **** --- 60,64 ---- BoolOption('debug', 'Build in debug mode', False), BoolOption('XML', 'Build with XML saving/loading functions (TinyXML headers required)', True), + BoolOption('mesh', 'Build with Mesh Shape functionality', True), PathOption('extra_include_path', 'Additional include directory', '.'), PathOption('extra_lib_path', 'Additional lib directory', '.')) *************** *** 94,97 **** --- 95,102 ---- env.Append(CPPDEFINES = ['OPAL_USE_XML']) + # Add mesh support if desired + if env['mesh'] == True: + env.Append(CPPDEFINES = ['OPAL_USE_MESH']) + if len(COMMAND_LINE_TARGETS) != 0: printOptions(env['debug'], physicsEngine, env['XML']) Index: todo.txt =================================================================== RCS file: /cvsroot/opal/opal/todo.txt,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** todo.txt 3 Mar 2005 02:32:28 -0000 1.48 --- todo.txt 4 Mar 2005 23:26:53 -0000 1.49 *************** *** 4,7 **** --- 4,10 ---- * look at scons dylib-building problem on os x + * add scons examples to readme + - mention that paths might need to be full paths + * fix memory allocation across dll boundary - volume collision check results -> put results in a specific class |