Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 21, 2008, 12:36:23 AM (16 years ago)
Author:
rgrieder
Message:

Applied long created patch that removes plugins.cfg and puts the content into orxonox.ini
This also allows to specify the media path for each 'distribution' individually because orxonox.ini has been added to the default files.

Location:
code/branches/buildsystem/bin
Files:
1 edited
3 moved

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem/bin/CMakeLists.txt

    r2243 r2244  
    1010  SET(CONFIG_FILES ${CONFIG_FILES}
    1111    linux/run-script
    12         tardis/plugins.cfg
     12        tardis/orxonox.ini
    1313  )
    1414
     
    1616  SET(CONFIG_FILES ${CONFIG_FILES}
    1717    linux/run-script
    18         linux/plugins.cfg
     18        linux/orxonox.ini
    1919  )
    2020ENDIF(IS_TARDIS)
     
    2222IF(MINGW)
    2323  SET(CONFIG_FILES ${CONFIG_FILES}
    24     "mingw/plugins.cfg"
     24    "mingw/orxonox.ini"
    2525    "mingw/orxonox.bat"
    2626  )
  • code/branches/buildsystem/bin/linux/orxonox.ini

    r2243 r2244  
    1 # Defines plugins to load
     1[Settings]
     2dataPath_ = ../../../media/
    23
    3 # Define plugin folder
    4 PluginFolder=/usr/lib/OGRE
    5 
    6 # Define plugins
    7 #Plugin=RenderSystem_Direct3D9
    8 Plugin=RenderSystem_GL
    9 Plugin=Plugin_ParticleFX
    10 Plugin=Plugin_CgProgramManager
    11 #Plugin=Plugin_BSPSceneManager
    12 #Plugin=Plugin_OctreeSceneManager
    13 
    14 
     4[GSGraphics]
     5ogrePluginsFolder_ = /usr/lib/OGRE
     6ogrePlugins_ = RenderSystem_GL, Plugin_ParticleFX, Plugin_CgProgramManager #,Plugin_BSPSceneManager, Plugin_OctreeSceneManager
  • code/branches/buildsystem/bin/mingw/orxonox.ini

    r2243 r2244  
    1 # Defines plugins to load
     1[Settings]
     2dataPath_ = ../../../media/
    23
    3 # Define plugin folder
    4 PluginFolder=..\..\libs\ogre\Samples\Common\bin\Release\
    5 
    6 # Define plugins
    7 Plugin=RenderSystem_Direct3D9
    8 Plugin=RenderSystem_GL
    9 Plugin=Plugin_ParticleFX
    10 Plugin=Plugin_CgProgramManager
    11 #Plugin=Plugin_BSPSceneManager
    12 #Plugin=Plugin_OctreeSceneManager
    13 
     4[GSGraphics]
     5ogrePluginsFolder_ = ..\..\libs\ogre\Samples\Common\bin\Release\
     6ogrePlugins_ = RenderSystem_Direct3D9, RenderSystem_GL, Plugin_ParticleFX, Plugin_CgProgramManager #,Plugin_BSPSceneManager, Plugin_OctreeSceneManager
  • code/branches/buildsystem/bin/tardis/orxonox.ini

    r2243 r2244  
    1 # Defines plugins to load
     1[Settings]
     2dataPath_ = ../../../media/
    23
    3 # Define plugin folder
    4 PluginFolder=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/OGRE/
    5 
    6 # Define plugins
    7 #Plugin=RenderSystem_Direct3D9
    8 Plugin=RenderSystem_GL
    9 Plugin=Plugin_ParticleFX
    10 Plugin=Plugin_CgProgramManager
    11 #Plugin=Plugin_BSPSceneManager
    12 #Plugin=Plugin_OctreeSceneManager
    13 
    14 
     4[GSGraphics]
     5ogrePluginsFolder_ = /usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/OGRE/
     6ogrePlugins_ = RenderSystem_GL, Plugin_ParticleFX, Plugin_CgProgramManager #,Plugin_BSPSceneManager, Plugin_OctreeSceneManager
Note: See TracChangeset for help on using the changeset viewer.