[Python-ogre-commit] SF.net SVN: python-ogre: [384] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2007-09-19 10:11:12
|
Revision: 384 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=384&view=rev Author: andy_miller Date: 2007-09-19 03:11:11 -0700 (Wed, 19 Sep 2007) Log Message: ----------- Further Linux build improvements - typos in CEGUI/ode/quickgui paths Reordered the code generation and build to only do ogre, OIS, CEGUI, ogrerefapp, and quickgui Modified Paths: -------------- trunk/python-ogre/PythonOgreConfig_posix.py trunk/python-ogre/scripts/06-GenerateCode.sh trunk/python-ogre/scripts/07-BuildModules.sh Modified: trunk/python-ogre/PythonOgreConfig_posix.py =================================================================== --- trunk/python-ogre/PythonOgreConfig_posix.py 2007-09-18 12:15:39 UTC (rev 383) +++ trunk/python-ogre/PythonOgreConfig_posix.py 2007-09-19 10:11:11 UTC (rev 384) @@ -44,7 +44,7 @@ PATH_betagui= os.path.join(BASE_DIR, 'betagui') # PATH_raknet= os.path.join(BASE_DIR, 'RakNet') PATH_simplegui= os.path.join(module_dir, 'ThirdParty/simplegui') -PATH_quickgui= os.path.join(BASE_DIR, 'Quickgui') ## note test for Quickgui SVN version +PATH_quickgui= os.path.join(BASE_DIR, 'quickgui') ## note test for Quickgui SVN version PATH_plib = os.path.join(BASE_DIR, 'plib') PATH_navi = os.path.join(BASE_DIR, 'navi','Navi') PATH_NxOgre= os.path.join(BASE_DIR, 'nxogre/NxOgre') @@ -105,7 +105,7 @@ PATH_INCLUDE_OgreRefApp = os.path.join(PATH_Ogre,'ReferenceApplication/ReferenceAppLayer/include') PATH_INCLUDE_OgreNewt = os.path.join(LOCAL_INCLUDE,'OgreNewt') #os.path.join(PATH_OgreAddons,'ogrenewt/OgreNewt_Main/inc') PATH_INCLUDE_CEGUI = os.path.join(LOCAL_INCLUDE,'CEGUI') #os.path.join(PATH_CEGUI, r'include/CEGUI') -PATH_INCLUDE_ODE = os.path.join(LOCAL_INCLUDE,'ODE') #os.path.join( PATH_ODE, 'include') +PATH_INCLUDE_ODE = os.path.join(LOCAL_INCLUDE,'ode') #os.path.join( PATH_ODE, 'include') PATH_INCLUDE_ODESOURCE = '' # os.path.join( PATH_ODE, 'ode/src') PATH_INCLUDE_quickgui = os.path.join(PATH_quickgui,'QuickGUI','include') @@ -124,7 +124,7 @@ PATH_INCLUDE_betagui = PATH_betagui PATH_INCLUDE_simplegui = PATH_simplegui # PATH_INCLUDE_raknet = os.path.join(PATH_raknet, 'Source' ) -PATH_INCLUDE_Ogre_CEGUIRenderer = os.path.join( PATH_Ogre, 'samples/Common/CEGUIRenderer/include') +PATH_INCLUDE_Ogre_CEGUIRenderer = os.path.join( PATH_Ogre, 'Samples/Common/CEGUIRenderer/include') PATH_INCLUDE_OPCODE = os.path.join( LOCAL_INCLUDE ) PATH_INCLUDE_Bullet = os.path.join( LOCAL_INCLUDE ) PATH_INCLUDE_navi = os.path.join (PATH_navi,'include') Modified: trunk/python-ogre/scripts/06-GenerateCode.sh =================================================================== --- trunk/python-ogre/scripts/06-GenerateCode.sh 2007-09-18 12:15:39 UTC (rev 383) +++ trunk/python-ogre/scripts/06-GenerateCode.sh 2007-09-19 10:11:11 UTC (rev 384) @@ -5,18 +5,15 @@ source ./config.sh echo "=== generating code ===" +cd python-ogre/code_generators echo ' -- creating OGRE code' -cd python-ogre/code_generators/ogre +cd ogre python generate_code.py > build.out cd .. echo ' -- creating OGRErefapp code' cd ogrerefapp python generate_code.py > build.out cd .. -#echo ' -- creating OgreAL code' -#cd ogreal -#python generate_code.py > build.out -#cd .. echo ' -- creating quickgui code' cd quickgui python generate_code.py > build.out @@ -25,21 +22,25 @@ cd ois python generate_code.py > build.out cd .. -echo ' -- creating OGREode code' -cd ogreode +echo ' -- creating CEGUI code' +cd cegui python generate_code.py > build.out -cd .. +cd .. +#echo ' -- creating OgreAL code' +#cd ogreal +#python generate_code.py > build.out +#cd .. +#echo ' -- creating OGREode code' +#cd ogreode +#python generate_code.py > build.out +#cd .. #echo ' -- creating OGREnewt code' #cd ogrenewt #python generate_code.py > build.out #cd .. -echo ' -- creating ode code' -cd ode -python generate_code.py > build.out -cd .. -echo ' -- creating CEGUI code' -cd cegui -python generate_code.py > build.out +#echo ' -- creating ode code' +#cd ode +#python generate_code.py > build.out cd $INSTALL_DIR echo echo "=== done building code ===" Modified: trunk/python-ogre/scripts/07-BuildModules.sh =================================================================== --- trunk/python-ogre/scripts/07-BuildModules.sh 2007-09-18 12:15:39 UTC (rev 383) +++ trunk/python-ogre/scripts/07-BuildModules.sh 2007-09-19 10:11:11 UTC (rev 384) @@ -9,5 +9,6 @@ # cd python-ogre scons PROJECTS=ogre,ois,quickgui,cegui,ogrerefapp +python setup.py install cd .. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |