Revision: 397
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=397&view=rev
Author: andy_miller
Date: 2007-09-28 07:52:54 -0700 (Fri, 28 Sep 2007)
Log Message:
-----------
Type on Ogre module name
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2007-09-28 14:45:20 UTC (rev 396)
+++ trunk/python-ogre/environment.py 2007-09-28 14:52:54 UTC (rev 397)
@@ -106,7 +106,7 @@
class Default:
version = ""
pythonModule = False
- moduleName = ""
+ ModuleName = ""
myHome = ""
myLibraryPaths = [ ]
myLibraries = [ ]
@@ -126,7 +126,7 @@
class boost:
version = "3.4"
pythonModule = False
- moduleName = ""
+ ModuleName = ""
myHome = 'boost'
myLibraryPaths = [ 'boost/bin.v2/libs/python2.5/build/msvc-8.0/release/threading-multi' ]
myLibraries = [ 'boost_python-vc80-mt-1_35']
@@ -149,7 +149,7 @@
pythonModule = True
version = "1.4"
myName='ogre'
- moduleName='OGRE'
+ ModuleName='OGRE'
cflags = ""
moduleParentLocation = "renderer"
parent = "ogre/renderer"
@@ -226,8 +226,11 @@
class ogrerefapp:
active = True
version = "1.4"
- parent = "ogre/physics"
- libs=[Config.LIB_Boost, 'OgreMain', 'ode', 'ReferenceAppLayer']
+ parent = "ogre/physics"
+ if os.name=="nt":
+ libs=[Config.LIB_Boost, 'OgreMain', 'ode', 'ReferenceAppLayer']
+ else:
+ libs=[Config.LIB_Boost, 'OgreMain', 'ode', 'ReferenceAppLayer']
lib_dirs = [ Config.PATH_LIB_Boost
, Config.PATH_LIB_Ogre_OgreMain
, Config.PATH_LIB_ODE
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|