Both sides previous revisionPrevious revisionNext revision | Previous revision |
public:t-gede-12-1:buildingogrefromscratch [2012/01/13 01:58] – hannes | public:t-gede-12-1:buildingogrefromscratch [2024/04/29 13:33] (current) – external edit 127.0.0.1 |
---|
====== Steps for Building a New Ogre App Totally from Scratch ====== | ====== Steps for Building a New Ogre App Totally from Scratch ====== |
| |
<note info>For Windows</note> | <note warn>This is a condensed, corrected and **Windows only version** of the information provided on the [[http://www.ogre3d.org/tikiwiki/Building+Ogre|Building Ogre]] and [[http://www.ogre3d.org/tikiwiki/Setting+Up+An+Application+-+Visual+Studio|Setting Up An Application]] wiki pages on the [[http://www.ogre3d.org/tikiwiki/|Ogre Wiki]]. Go there directly for more information and for setting this up on other platforms.</note> |
| |
| **General Preparation** |
- Download and install [[http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express|Microsoft Visual C++ Express 2010]] (if you don't have it) | - Download and install [[http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express|Microsoft Visual C++ Express 2010]] (if you don't have it) |
- Download and install [[http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=10084|Microsoft DirectX SDK (February 2010)]] | - Download and install [[http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=10084|Microsoft DirectX SDK (February 2010)]] |
| |
| **Building Ogre from Source Files** |
- Download and decompress the [[https://sourceforge.net/projects/ogre/files/ogre/1.7/ogre_src_v1-7-3.exe/download|OGRE 1.7.3 Source For Windows]] (this should create the folder "ogre_src_v1-7-3") | - Download and decompress the [[https://sourceforge.net/projects/ogre/files/ogre/1.7/ogre_src_v1-7-3.exe/download|OGRE 1.7.3 Source For Windows]] (this should create the folder "ogre_src_v1-7-3") |
- Download [[https://sourceforge.net/projects/ogre/files/ogre-dependencies-vc%2B%2B/1.7/OgreDependencies_MSVC_20101231.zip/download|Microsoft Visual C++ Dependencies Package]], unzip it, and place the folder ''Dependencies'' inside ''ogre_src_v1-7-3'' | - Download [[https://sourceforge.net/projects/ogre/files/ogre-dependencies-vc%2B%2B/1.7/OgreDependencies_MSVC_20101231.zip/download|Microsoft Visual C++ Dependencies Package]], unzip it, and place the folder ''Dependencies'' inside ''ogre_src_v1-7-3'' |
- Go to your ''ogre_built'' directory and build the ''OGRE.sln'' solution | - Go to your ''ogre_built'' directory and build the ''OGRE.sln'' solution |
- If this build goes well, you can test the Ogre examples by running ''SampleBrowser_d.exe'' under ''ogre_built\bin\debug'' (if built with the debug configuration) | - If this build goes well, you can test the Ogre examples by running ''SampleBrowser_d.exe'' under ''ogre_built\bin\debug'' (if built with the debug configuration) |
| |
| **Creating Your Ogre Application** |
- Create a new Win32 project (Windows Application, Empty Project) | - Create a new Win32 project (Windows Application, Empty Project) |
- Download and add the [[http://www.ogre3d.org/tikiwiki/tiki-download_wiki_attachment.php?attId=61&page=Ogre%20Wiki%20Tutorial%20Framework&download=y|Ogre Tutorial Framework Files]] to your project | - Download and add the [[http://www.ogre3d.org/tikiwiki/tiki-download_wiki_attachment.php?attId=61&page=Ogre%20Wiki%20Tutorial%20Framework&download=y|Ogre Tutorial Framework Files]] to your project |
- Configure your project properties (Debug Configuration) (Replace "C:\Development" with your development directory): | - Configure your project properties (Debug Configuration) (Replace "C:\Development" with your own development directory): |
- General -> Character Set -> ''Use Multi-Byte Character Set'' | - General -> Character Set -> ''Use Multi-Byte Character Set'' |
- Debugging -> Command -> ''.\$(Configuration)\$(ProjectName).exe'' | - Debugging -> Command -> ''.\Debug\$(ProjectName).exe'' |
- Debugging -> Working Directory -> ''.\$(Configuration)'' | - Debugging -> Working Directory -> ''.\Debug'' |
- C/C++ -> General -> Additional Include Directories -> ''C:\Development\ogre_src_v1-7-3\OgreMain\include;C:\Development\ogre_src_v1-7-3\Dependencies\include;C:\Development\ogre_src_v1-7-3\Dependencies\include\OIS;C:\Development\ogre_src_v1-7-3\Samples\Common\include;C:\Development\ogre_built\include'' | - C/C++ -> General -> Additional Include Directories -> ''C:\Development\ogre_src_v1-7-3\OgreMain\include;C:\Development\ogre_src_v1-7-3\Dependencies\include;C:\Development\ogre_src_v1-7-3\Dependencies\include\OIS;C:\Development\ogre_src_v1-7-3\Samples\Common\include;C:\Development\ogre_built\include'' |
- Linker -> General -> Additional Library Directories -> ''C:\Development\ogre_built\lib\Debug; C:\Development\ogre_src_v1-7-3\Dependencies\lib\Debug'' | - Linker -> General -> Additional Library Directories -> ''C:\Development\ogre_built\lib\Debug; C:\Development\ogre_src_v1-7-3\Dependencies\lib\Debug'' |
- Build your project (Debug Configuration) | - Build your project (Debug Configuration) |
- Add ''C:\Development\ogre_built\bin\debug'' to your windows system PATH environment variable (so the Ogre DLLs can be found) | - Add ''C:\Development\ogre_built\bin\debug'' to your windows system PATH environment variable (so the Ogre DLLs can be found) |
- Copy ''ogre_d.cfg'', ''resources_d.cfg'' and ''plugins_d.cfg'' into the folder with your new Ogre application (local Ogre configuration) | - Copy ''resources_d.cfg'' and ''plugins_d.cfg'' into the folder with your new Ogre application (local Ogre configuration) |
- Run your application | - Run your application |
- After going through a configuration screen you should see a black render window | - After going through a configuration screen you should see a black render window |