Difference between revisions of "Building CEGUI for Ogre / OgreRenderer"

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Jump to: navigation, search
m
Line 1: Line 1:
 
== General ==
 
== General ==
Since Ogre version 1.7 CEGUI is not an Ogre dependency anymore using its own basic interface for its samples now, instead of CEGUI.
+
Since the [[Cthugha|Ogre 1.7]] version, [[CEGUI]] is not an Ogre dependency anymore using its own basic interface for its samples now, instead of CEGUI.
  
 
This means that from now on, you have to build CEGUI for your Ogre project yourself, in case you want to use the latest Ogre or CEGUI versions. Otherwise, you can grab the latest precompiled dependencies from [http://www.ogre3d.org/download/ the Ogre download section] and [http://www.cegui.org.uk/wiki/index.php/Downloads the CEGUI download section].
 
This means that from now on, you have to build CEGUI for your Ogre project yourself, in case you want to use the latest Ogre or CEGUI versions. Otherwise, you can grab the latest precompiled dependencies from [http://www.ogre3d.org/download/ the Ogre download section] and [http://www.cegui.org.uk/wiki/index.php/Downloads the CEGUI download section].
 +
 +
For CEGUI the upper download link may not contain all needed files for this procedure. In this case use [http://www.cegui.org.uk/phpBB2/viewtopic.php?f=6&t=4443 this link] to download CEGUI.
 +
 +
'''Be careful:''' The current [04/14/10] precompiled Win32 Ogre (1.7.0) and CEGUI (0.7.1) releases are not compatible. Either compile Ogre or CEGUI yourself to solve this problem.
  
 
== Step-by-step guide ==
 
== Step-by-step guide ==
Line 10: Line 14:
 
* 2. Also get the latest '''Ogre''' version. Without regards whether you got it from repository or you are just compiling it yourself, you will need to build it first to get the .lib and .dll files.
 
* 2. Also get the latest '''Ogre''' version. Without regards whether you got it from repository or you are just compiling it yourself, you will need to build it first to get the .lib and .dll files.
  
* 3. In your CEGUI folder there should be a folder called "'''projects'''" with a subfolder called "'''premake'''". Get a version of premake and extract the '''premake.exe''' file into this folder.
+
* 3. In your CEGUI folder there should be a folder called "'''projects'''" with a subfolder called "'''premake'''". It is recommended to use the [https://sourceforge.net/projects/crayzedsgui/files/CEGUI%20Mk-2/premake/premake-3.7-custom.zip/download custom premake version of CEGUI]. Otherwise you can get version 3.6 or 3.7 of premake. Once you have premake extract the '''premake.exe''' file into the said folder.
  
 
* 4. Open '''config.lua''' in the premake folder and edit the Ogre and OIS paths accordingly, so they will point to your SDK files. In my case for example the 2 lines look like this:
 
* 4. Open '''config.lua''' in the premake folder and edit the Ogre and OIS paths accordingly, so they will point to your SDK files. In my case for example the 2 lines look like this:
Line 35: Line 39:
 
For any suggestions and questions send a PM to me (Ident) or just ask in the forums and someone else will help you for sure...
 
For any suggestions and questions send a PM to me (Ident) or just ask in the forums and someone else will help you for sure...
 
When you need help building Ogre, I fully recommend reading [http://blog.tidalware.com/2009/08/building-ogre-trunk-1-7 this short guide].
 
When you need help building Ogre, I fully recommend reading [http://blog.tidalware.com/2009/08/building-ogre-trunk-1-7 this short guide].
 
  
 
For the Ogre-wiki version of this article you can also check this link: http://www.ogre3d.org/wiki/index.php/Building_CEGUI
 
For the Ogre-wiki version of this article you can also check this link: http://www.ogre3d.org/wiki/index.php/Building_CEGUI
 +
 +
 +
[[Category:OGRE]]

Revision as of 17:07, 12 June 2010

General

Since the Ogre 1.7 version, CEGUI is not an Ogre dependency anymore using its own basic interface for its samples now, instead of CEGUI.

This means that from now on, you have to build CEGUI for your Ogre project yourself, in case you want to use the latest Ogre or CEGUI versions. Otherwise, you can grab the latest precompiled dependencies from the Ogre download section and the CEGUI download section.

For CEGUI the upper download link may not contain all needed files for this procedure. In this case use this link to download CEGUI.

Be careful: The current [04/14/10] precompiled Win32 Ogre (1.7.0) and CEGUI (0.7.1) releases are not compatible. Either compile Ogre or CEGUI yourself to solve this problem.

Step-by-step guide

  • 1. Get the appropriate CEGUI SDK version from the CEGUI download page or get the very latest CEGUI version from the SVN repository.
  • 2. Also get the latest Ogre version. Without regards whether you got it from repository or you are just compiling it yourself, you will need to build it first to get the .lib and .dll files.
  • 3. In your CEGUI folder there should be a folder called "projects" with a subfolder called "premake". It is recommended to use the custom premake version of CEGUI. Otherwise you can get version 3.6 or 3.7 of premake. Once you have premake extract the premake.exe file into the said folder.
  • 4. Open config.lua in the premake folder and edit the Ogre and OIS paths accordingly, so they will point to your SDK files. In my case for example the 2 lines look like this:
OGRE_PATHS = { ".../Visual Studio 2008/Projects/Ogre 1.7/Ogre/VCBuild/sdk", "include/OGRE", "lib" }
OIS_PATHS = { ".../Visual Studio 2008/Projects/Ogre 1.7/Ogre/VCBuild/sdk", "include/OIS", "lib" }

Note: Remember to use forward slashes here! Just copying the paths from the Windows explorer will give you backward slashes. Replace them!

Next, set all Renderers you do not need to "false", in this case we will only need OGRE_RENDERER. You can also set all samples to false, except maybe SAMPLES_OGRE if you want them.

  • 5. Next, we create our Visual Studio Projects - Execute build_vs2008.bat to create a Visual Studio 2008 project or execute any other .bat file for your respective Visual Studio version.
  • 6. This should create CEGUI.sln in the premake folder. Open it.
  • 7. If you have the Ogre lib files seperated into a Debug and Release folder, you will have to change the path in the Linker settings of the project so they will point to the lib/Debug or lib/Release folder for each configuration respectively.
  • 8. Build the CEGUIOgreRenderer in Debug and Release mode, copy the CEGUIBase and CEGUIOgreRenderer .dll and .lib files as well as the CEGUI include folder and there you go, you're done!

Questions

For any suggestions and questions send a PM to me (Ident) or just ask in the forums and someone else will help you for sure... When you need help building Ogre, I fully recommend reading this short guide.

For the Ogre-wiki version of this article you can also check this link: http://www.ogre3d.org/wiki/index.php/Building_CEGUI