Changeset 2569
- Timestamp:
- Jan 6, 2009, 10:38:41 AM (16 years ago)
- Location:
- code/branches/buildsystem2
- Files:
-
- 7 added
- 7 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/CMakeLists.txt
r2567 r2569 18 18 INCLUDE_DIRECTORIES( 19 19 cpptcl 20 ogreceguirenderer 20 21 ois 21 22 tinyxml … … 35 36 36 37 ADD_SUBDIRECTORY(cpptcl) 38 ADD_SUBDIRECTORY(ogreceguirenderer) 37 39 ADD_SUBDIRECTORY(ois) 38 40 ADD_SUBDIRECTORY(tinyxml) -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUIRenderer.cpp
r2533 r2569 25 25 *************************************************************************/ 26 26 27 #include "OrxonoxStableHeaders.h"28 27 #include <CEGUIImagesetManager.h> 29 28 #include <CEGUIImageset.h> -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUIRenderer.h
r2533 r2569 27 27 This file contains code that is specific to Ogre (http://www.ogre3d.org) 28 28 *************************************************************************/ 29 #ifndef _OgreCEGUIRenderer_ H__30 #define _OgreCEGUIRenderer_ H__29 #ifndef _OgreCEGUIRenderer_h_ 30 #define _OgreCEGUIRenderer_h_ 31 31 32 32 #include <CEGUIBase.h> … … 38 38 #include <OgreTextureUnitState.h> 39 39 40 /** CHANGES MADE BY ORXONOX TO FIT DLL IMPORT/EXPORT **/ 41 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS)) 42 # ifdef ORXONOX_SHARED_BUILD 40 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !defined(OGRE_STATIC_LIB) 41 # ifdef OGRE_GUIRENDERER_EXPORTS 43 42 # define OGRE_GUIRENDERER_API __declspec(dllexport) 44 43 # else … … 463 462 464 463 465 #endif // end of guard _OgreCEGUIRenderer_ H__464 #endif // end of guard _OgreCEGUIRenderer_h_ -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUIResourceProvider.cpp
r2533 r2569 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #include "OrxonoxStableHeaders.h"27 26 #include "OgreCEGUIResourceProvider.h" 28 27 -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUIResourceProvider.h
r2533 r2569 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #ifndef _OgreCEGUIResourceProvider_ H__27 #define _OgreCEGUIResourceProvider_ H__26 #ifndef _OgreCEGUIResourceProvider_h_ 27 #define _OgreCEGUIResourceProvider_h_ 28 28 29 29 #include <CEGUIResourceProvider.h> … … 50 50 } // End of CEGUI namespace section 51 51 52 #endif // end of guard _OgreCEGUIResourceProvider_ H__52 #endif // end of guard _OgreCEGUIResourceProvider_h_ -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUITexture.cpp
r2533 r2569 25 25 *************************************************************************/ 26 26 27 #include "OrxonoxStableHeaders.h"28 27 #include <CEGUISystem.h> 29 28 #include <CEGUIExceptions.h> -
code/branches/buildsystem2/src/ogreceguirenderer/OgreCEGUITexture.h
r2533 r2569 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #ifndef _OgreCEGUITexture_ H__27 #define _OgreCEGUITexture_ H__26 #ifndef _OgreCEGUITexture_h_ 27 #define _OgreCEGUITexture_h_ 28 28 29 29 #include <CEGUIBase.h> … … 177 177 178 178 179 #endif // end of guard _OgreCEGUITexture_ H__179 #endif // end of guard _OgreCEGUITexture_h_ -
code/branches/buildsystem2/src/orxonox/CMakeLists.txt
r2546 r2569 40 40 #${CEGUI_SCRIPT_LIBRARIES} 41 41 ceguilua_orxonox 42 ogreceguirenderer_orxonox 42 43 tinyxml_orxonox 43 44 tolualib_orxonox -
code/branches/buildsystem2/src/orxonox/gui/CMakeLists.txt
r2518 r2569 1 1 ADD_SOURCE_FILES( 2 2 GUIManager.cc 3 OgreCEGUIRenderer.cpp4 OgreCEGUIResourceProvider.cpp5 OgreCEGUITexture.cpp6 3 ) -
code/branches/buildsystem2/src/orxonox/gui/GUIManager.cc
r2568 r2569 40 40 #include <CEGUI.h> 41 41 #include <CEGUILua.h> 42 #include <OgreCEGUIRenderer.h> 43 42 44 #include "util/Exception.h" 43 45 #include "core/input/InputManager.h" … … 47 49 #include "core/ToluaBindCore.h" 48 50 #include "ToluaBindOrxonox.h" 49 #include "OgreCEGUIRenderer.h"50 51 51 52 extern "C" { -
code/branches/buildsystem2/visual_studio/vc8/base.vsprops
r2567 r2569 8 8 <Tool 9 9 Name="VCCLCompilerTool" 10 AdditionalIncludeDirectories=""$(RootDir)src";"$(RootDir)\build\$(SolutionName)\$(ConfigurationName)";"$(RootDir)\build\$(SolutionName)\$(ConfigurationName)\orxonox";"$(RootDir)src\cpptcl";"$(RootDir)src\tinyxml";"$(RootDir)src\tolua";"$(RootDir)src\ois";"$(RootDir)src\orxonox";"$(RootDir)src\ceguilua-0.6.1\ceguilua";"$( LibDir)ogre-1.4.9\include";"$(LibDir)boost-1.35.0\include";"$(LibDir)cegui-0.6.1\include";"$(LibDir)enet-1.2\include";"$(LibDir)libogg-1.1.3\include";"$(LibDir)libvorbis-1.2.0\include";"$(LibDir)openal-1.1\include";"$(LibDir)freealut-1.1.0\include";"$(LibDir)tcl-8.5.2\include";"$(LibDir)zlib-1.2.3\include";"$(LibDir)lua-5.1.3\include""10 AdditionalIncludeDirectories=""$(RootDir)src";"$(RootDir)\build\$(SolutionName)\$(ConfigurationName)";"$(RootDir)\build\$(SolutionName)\$(ConfigurationName)\orxonox";"$(RootDir)src\cpptcl";"$(RootDir)src\tinyxml";"$(RootDir)src\tolua";"$(RootDir)src\ois";"$(RootDir)src\orxonox";"$(RootDir)src\ceguilua-0.6.1\ceguilua";"$(RootDir)src\ogreceguirenderer";"$(LibDir)ogre-1.4.9\include";"$(LibDir)boost-1.35.0\include";"$(LibDir)cegui-0.6.1\include";"$(LibDir)enet-1.2\include";"$(LibDir)libogg-1.1.3\include";"$(LibDir)libvorbis-1.2.0\include";"$(LibDir)openal-1.1\include";"$(LibDir)freealut-1.1.0\include";"$(LibDir)tcl-8.5.2\include";"$(LibDir)zlib-1.2.3\include";"$(LibDir)lua-5.1.3\include"" 11 11 PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;_WINDOWS;BOOST_ALL_DYN_LINK;OIS_DYNAMIC_LIB;ZLIB_WINAPI;LUA_BUILD_AS_DLL;TIXML_USE_TICPP;_CRT_SECURE_NO_WARNINGS" 12 12 WarningLevel="3" -
code/branches/buildsystem2/visual_studio/vc8/orxonox.vcproj
r2547 r2569 755 755 > 756 756 </File> 757 <File758 RelativePath="..\..\src\orxonox\gui\OgreCEGUIRenderer.cpp"759 >760 </File>761 <File762 RelativePath="..\..\src\orxonox\gui\OgreCEGUIResourceProvider.cpp"763 >764 </File>765 <File766 RelativePath="..\..\src\orxonox\gui\OgreCEGUITexture.cpp"767 >768 </File>769 757 </Filter> 770 758 <Filter … … 1239 1227 <File 1240 1228 RelativePath="..\..\src\orxonox\gui\GUIManager.h" 1241 >1242 </File>1243 <File1244 RelativePath="..\..\src\orxonox\gui\OgreCEGUIRenderer.h"1245 >1246 </File>1247 <File1248 RelativePath="..\..\src\orxonox\gui\OgreCEGUIResourceProvider.h"1249 >1250 </File>1251 <File1252 RelativePath="..\..\src\orxonox\gui\OgreCEGUITexture.h"1253 1229 > 1254 1230 </File> -
code/branches/buildsystem2/visual_studio/vc8/orxonox_vc8.sln
r2520 r2569 17 17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "core", "core.vcproj", "{271715F3-5B90-4110-A552-70C788084A86}" 18 18 ProjectSection(ProjectDependencies) = postProject 19 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} 20 {A0724246-CB7C-420B-BCF0-68EF205AFE34} = {A0724246-CB7C-420B-BCF0-68EF205AFE34} 21 {53C56131-E2AA-4A27-B460-7AC05D61A0E6} = {53C56131-E2AA-4A27-B460-7AC05D61A0E6} 22 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 23 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F} 19 24 {EA969DF2-70AF-46E6-BBE2-E03112E04CB8} = {EA969DF2-70AF-46E6-BBE2-E03112E04CB8} 20 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}21 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}22 {53C56131-E2AA-4A27-B460-7AC05D61A0E6} = {53C56131-E2AA-4A27-B460-7AC05D61A0E6}23 {A0724246-CB7C-420B-BCF0-68EF205AFE34} = {A0724246-CB7C-420B-BCF0-68EF205AFE34}24 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}25 25 EndProjectSection 26 26 EndProject 27 27 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "network", "network.vcproj", "{35575B59-E1AE-40E8-89C4-2862B5B09B68}" 28 28 ProjectSection(ProjectDependencies) = postProject 29 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86} 30 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F} 29 31 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 30 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}31 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}32 32 EndProjectSection 33 33 EndProject 34 34 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "orxonox", "orxonox.vcproj", "{0B6C5CFD-F91B-432A-80A3-2610F61E060B}" 35 35 ProjectSection(ProjectDependencies) = postProject 36 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D} = {0301EB55-B3DE-487F-BE65-8EB6D26CC31D} 37 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} 38 {A0724246-CB7C-420B-BCF0-68EF205AFE34} = {A0724246-CB7C-420B-BCF0-68EF205AFE34} 39 {35575B59-E1AE-40E8-89C4-2862B5B09B68} = {35575B59-E1AE-40E8-89C4-2862B5B09B68} 40 {4BBBB49F-3203-4BB4-AAE3-48BCA96FCB4F} = {4BBBB49F-3203-4BB4-AAE3-48BCA96FCB4F} 41 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 36 42 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F} 37 43 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86} 38 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}39 {4BBBB49F-3203-4BB4-AAE3-48BCA96FCB4F} = {4BBBB49F-3203-4BB4-AAE3-48BCA96FCB4F}40 {35575B59-E1AE-40E8-89C4-2862B5B09B68} = {35575B59-E1AE-40E8-89C4-2862B5B09B68}41 {A0724246-CB7C-420B-BCF0-68EF205AFE34} = {A0724246-CB7C-420B-BCF0-68EF205AFE34}42 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}43 44 EndProjectSection 44 45 EndProject … … 51 52 EndProject 52 53 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "externals", "externals", "{B9D56701-B4DB-43F8-9920-241CA418C1CE}" 54 EndProject 55 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ogreceguirenderer", "ogreceguirenderer.vcproj", "{0301EB55-B3DE-487F-BE65-8EB6D26CC31D}" 53 56 EndProject 54 57 Global … … 98 101 {EA969DF2-70AF-46E6-BBE2-E03112E04CB8}.Release|Win32.ActiveCfg = Release|Win32 99 102 {EA969DF2-70AF-46E6-BBE2-E03112E04CB8}.Release|Win32.Build.0 = Release|Win32 103 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D}.Debug|Win32.ActiveCfg = Debug|Win32 104 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D}.Debug|Win32.Build.0 = Debug|Win32 105 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D}.Release|Win32.ActiveCfg = Release|Win32 106 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D}.Release|Win32.Build.0 = Release|Win32 100 107 EndGlobalSection 101 108 GlobalSection(SolutionProperties) = preSolution … … 109 116 {EA969DF2-70AF-46E6-BBE2-E03112E04CB8} = {B9D56701-B4DB-43F8-9920-241CA418C1CE} 110 117 {53C56131-E2AA-4A27-B460-7AC05D61A0E6} = {B9D56701-B4DB-43F8-9920-241CA418C1CE} 118 {0301EB55-B3DE-487F-BE65-8EB6D26CC31D} = {B9D56701-B4DB-43F8-9920-241CA418C1CE} 111 119 EndGlobalSection 112 120 EndGlobal
Note: See TracChangeset
for help on using the changeset viewer.