forked from mirror/openmw-tes3mp
Remove last remains of Ogre
This commit is contained in:
parent
b70383d127
commit
4bb3cbf0fb
46 changed files with 17 additions and 671 deletions
|
@ -171,11 +171,6 @@ IF(BOOST_STATIC)
|
||||||
set(Boost_USE_STATIC_LIBS ON)
|
set(Boost_USE_STATIC_LIBS ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(OGRE REQUIRED)
|
|
||||||
if (${OGRE_VERSION} VERSION_LESS "1.9")
|
|
||||||
message(FATAL_ERROR "OpenMW requires Ogre 1.9 or later, please install the latest stable version from http://ogre3d.org")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(OpenSceneGraph 3.2.0 REQUIRED osgDB osgViewer osgGA osgAnimation osgParticle osgQt osgUtil osgFX)
|
find_package(OpenSceneGraph 3.2.0 REQUIRED osgDB osgViewer osgGA osgAnimation osgParticle osgQt osgUtil osgFX)
|
||||||
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS})
|
include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
@ -191,7 +186,6 @@ find_package(Bullet REQUIRED)
|
||||||
|
|
||||||
include_directories("."
|
include_directories("."
|
||||||
SYSTEM
|
SYSTEM
|
||||||
${OGRE_INCLUDE_DIR} ${OGRE_INCLUDE_DIR}/Ogre ${OGRE_INCLUDE_DIR}/OGRE ${OGRE_INCLUDE_DIRS}
|
|
||||||
${SDL2_INCLUDE_DIR}
|
${SDL2_INCLUDE_DIR}
|
||||||
${Boost_INCLUDE_DIR}
|
${Boost_INCLUDE_DIR}
|
||||||
${PLATFORM_INCLUDE_DIR}
|
${PLATFORM_INCLUDE_DIR}
|
||||||
|
@ -200,7 +194,7 @@ include_directories("."
|
||||||
${BULLET_INCLUDE_DIRS}
|
${BULLET_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
link_directories(${SDL2_LIBRARY_DIRS} ${Boost_LIBRARY_DIRS} ${OGRE_LIB_DIR} ${MYGUI_LIB_DIR})
|
link_directories(${SDL2_LIBRARY_DIRS} ${Boost_LIBRARY_DIRS} ${MYGUI_LIB_DIR})
|
||||||
|
|
||||||
if(MYGUI_STATIC)
|
if(MYGUI_STATIC)
|
||||||
add_definitions(-DMYGUI_STATIC)
|
add_definitions(-DMYGUI_STATIC)
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
#include <OgreImage.h>
|
|
||||||
#include <OgreColourValue.h>
|
|
||||||
|
|
||||||
#include <osgDB/WriteFile>
|
#include <osgDB/WriteFile>
|
||||||
|
|
||||||
#include <components/esm/creaturestate.hpp>
|
#include <components/esm/creaturestate.hpp>
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef OPENMW_ESSIMPORT_CONVERTER_H
|
#ifndef OPENMW_ESSIMPORT_CONVERTER_H
|
||||||
#define OPENMW_ESSIMPORT_CONVERTER_H
|
#define OPENMW_ESSIMPORT_CONVERTER_H
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
#include <osg/Image>
|
#include <osg/Image>
|
||||||
#include <osg/ref_ptr>
|
#include <osg/ref_ptr>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
#include "importer.hpp"
|
#include "importer.hpp"
|
||||||
|
|
||||||
|
#include <iomanip>
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
#include <osgDB/ReadFile>
|
#include <osgDB/ReadFile>
|
||||||
|
|
|
@ -200,7 +200,6 @@ if(APPLE)
|
||||||
endif(APPLE)
|
endif(APPLE)
|
||||||
|
|
||||||
target_link_libraries(openmw-cs
|
target_link_libraries(openmw-cs
|
||||||
${OGRE_LIBRARIES}
|
|
||||||
${OPENSCENEGRAPH_LIBRARIES}
|
${OPENSCENEGRAPH_LIBRARIES}
|
||||||
${Boost_LIBRARIES}
|
${Boost_LIBRARIES}
|
||||||
${QT_LIBRARIES}
|
${QT_LIBRARIES}
|
||||||
|
|
|
@ -126,7 +126,6 @@ endif ()
|
||||||
include_directories(${SOUND_INPUT_INCLUDES})
|
include_directories(${SOUND_INPUT_INCLUDES})
|
||||||
|
|
||||||
target_link_libraries(openmw
|
target_link_libraries(openmw
|
||||||
${OGRE_LIBRARIES}
|
|
||||||
${OPENSCENEGRAPH_LIBRARIES}
|
${OPENSCENEGRAPH_LIBRARIES}
|
||||||
${Boost_LIBRARIES}
|
${Boost_LIBRARIES}
|
||||||
${OPENAL_LIBRARY}
|
${OPENAL_LIBRARY}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "hud.hpp"
|
#include "hud.hpp"
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
|
|
||||||
#include <MyGUI_RenderManager.h>
|
#include <MyGUI_RenderManager.h>
|
||||||
#include <MyGUI_ProgressBar.h>
|
#include <MyGUI_ProgressBar.h>
|
||||||
#include <MyGUI_Button.h>
|
#include <MyGUI_Button.h>
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "mapwindow.hpp"
|
#include "mapwindow.hpp"
|
||||||
|
|
||||||
#include <OgreVector2.h>
|
|
||||||
|
|
||||||
#include <osg/Texture2D>
|
#include <osg/Texture2D>
|
||||||
|
|
||||||
#include <MyGUI_ScrollView.h>
|
#include <MyGUI_ScrollView.h>
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "settingswindow.hpp"
|
#include "settingswindow.hpp"
|
||||||
|
|
||||||
#include <OgreRoot.h>
|
|
||||||
|
|
||||||
#include <MyGUI_ScrollBar.h>
|
#include <MyGUI_ScrollBar.h>
|
||||||
#include <MyGUI_Window.h>
|
#include <MyGUI_Window.h>
|
||||||
#include <MyGUI_ComboBox.h>
|
#include <MyGUI_ComboBox.h>
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include <MyGUI_ScrollView.h>
|
#include <MyGUI_ScrollView.h>
|
||||||
#include <MyGUI_Gui.h>
|
#include <MyGUI_Gui.h>
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "../mwbase/environment.hpp"
|
#include "../mwbase/environment.hpp"
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
#include "../mwbase/windowmanager.hpp"
|
#include "../mwbase/windowmanager.hpp"
|
||||||
|
|
|
@ -10,11 +10,6 @@
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
|
|
||||||
namespace Ogre
|
|
||||||
{
|
|
||||||
class Vector3;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace MWWorld
|
namespace MWWorld
|
||||||
{
|
{
|
||||||
class Ptr;
|
class Ptr;
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
|
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
|
|
||||||
#include "steering.hpp"
|
#include "steering.hpp"
|
||||||
|
|
||||||
MWMechanics::AiAvoidDoor::AiAvoidDoor(const MWWorld::Ptr& doorPtr)
|
MWMechanics::AiAvoidDoor::AiAvoidDoor(const MWWorld::Ptr& doorPtr)
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "aicombat.hpp"
|
#include "aicombat.hpp"
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
|
|
||||||
#include <components/misc/rng.hpp>
|
#include <components/misc/rng.hpp>
|
||||||
|
|
||||||
#include <components/esm/aisequence.hpp>
|
#include <components/esm/aisequence.hpp>
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
#include "obstacle.hpp"
|
#include "obstacle.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "../mwworld/cellstore.hpp" // for Doors
|
#include "../mwworld/cellstore.hpp" // for Doors
|
||||||
|
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
#include "creaturestats.hpp"
|
#include "creaturestats.hpp"
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "steering.hpp"
|
#include "steering.hpp"
|
||||||
|
|
||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
#include "../mwworld/action.hpp"
|
#include "../mwworld/action.hpp"
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
|
|
||||||
#include "steering.hpp"
|
#include "steering.hpp"
|
||||||
|
|
||||||
MWMechanics::AiPackage::~AiPackage() {}
|
MWMechanics::AiPackage::~AiPackage() {}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "aitravel.hpp"
|
#include "aitravel.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include <components/esm/aisequence.hpp>
|
#include <components/esm/aisequence.hpp>
|
||||||
|
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
#include "aiwander.hpp"
|
#include "aiwander.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
#include <OgreSceneNode.h>
|
|
||||||
|
|
||||||
#include <components/misc/rng.hpp>
|
#include <components/misc/rng.hpp>
|
||||||
|
|
||||||
#include <components/esm/aisequence.hpp>
|
#include <components/esm/aisequence.hpp>
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "pathfinding.hpp"
|
#include "pathfinding.hpp"
|
||||||
#include "obstacle.hpp"
|
#include "obstacle.hpp"
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
|
|
||||||
#include "character.hpp"
|
#include "character.hpp"
|
||||||
|
|
||||||
#include <OgreStringConverter.h>
|
|
||||||
|
|
||||||
#include <osg/PositionAttitudeTransform>
|
#include <osg/PositionAttitudeTransform>
|
||||||
|
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef GAME_MWMECHANICS_CHARACTER_HPP
|
#ifndef GAME_MWMECHANICS_CHARACTER_HPP
|
||||||
#define GAME_MWMECHANICS_CHARACTER_HPP
|
#define GAME_MWMECHANICS_CHARACTER_HPP
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
#include <deque>
|
||||||
|
|
||||||
#include <components/esm/loadmgef.hpp>
|
#include <components/esm/loadmgef.hpp>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#define OPENMW_MECHANICS_COMBAT_H
|
#define OPENMW_MECHANICS_COMBAT_H
|
||||||
|
|
||||||
#include "../mwworld/ptr.hpp"
|
#include "../mwworld/ptr.hpp"
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
namespace MWMechanics
|
namespace MWMechanics
|
||||||
{
|
{
|
||||||
|
|
|
@ -10,11 +10,6 @@
|
||||||
#include "objects.hpp"
|
#include "objects.hpp"
|
||||||
#include "actors.hpp"
|
#include "actors.hpp"
|
||||||
|
|
||||||
namespace Ogre
|
|
||||||
{
|
|
||||||
class Vector3;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace MWWorld
|
namespace MWWorld
|
||||||
{
|
{
|
||||||
class CellStore;
|
class CellStore;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "objects.hpp"
|
#include "objects.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "movement.hpp"
|
#include "movement.hpp"
|
||||||
|
|
||||||
#include "../mwbase/environment.hpp"
|
#include "../mwbase/environment.hpp"
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "obstacle.hpp"
|
#include "obstacle.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
#include "../mwworld/class.hpp"
|
#include "../mwworld/class.hpp"
|
||||||
#include "../mwworld/cellstore.hpp"
|
#include "../mwworld/cellstore.hpp"
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
#include "pathfinding.hpp"
|
#include "pathfinding.hpp"
|
||||||
|
|
||||||
#include "OgreMath.h"
|
|
||||||
#include "OgreVector3.h"
|
|
||||||
|
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
#include "../mwbase/environment.hpp"
|
#include "../mwbase/environment.hpp"
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,6 @@
|
||||||
#include <components/esm/loadpgrd.hpp>
|
#include <components/esm/loadpgrd.hpp>
|
||||||
#include <list>
|
#include <list>
|
||||||
|
|
||||||
#include <OgreMath.h>
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
namespace MWWorld
|
namespace MWWorld
|
||||||
{
|
{
|
||||||
class CellStore;
|
class CellStore;
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
|
|
||||||
#include "../mwworld/ptr.hpp"
|
#include "../mwworld/ptr.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include <components/esm/loadskil.hpp>
|
#include <components/esm/loadskil.hpp>
|
||||||
|
|
||||||
namespace ESM
|
namespace ESM
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#include "summoning.hpp"
|
#include "summoning.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "../mwbase/environment.hpp"
|
#include "../mwbase/environment.hpp"
|
||||||
#include "../mwbase/world.hpp"
|
#include "../mwbase/world.hpp"
|
||||||
|
|
||||||
|
|
|
@ -2,15 +2,13 @@
|
||||||
#define OPENMW_MWPHYSICS_PHYSICSSYSTEM_H
|
#define OPENMW_MWPHYSICS_PHYSICSSYSTEM_H
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
#include <osg/Quat>
|
||||||
|
|
||||||
#include <osg/ref_ptr>
|
#include <osg/ref_ptr>
|
||||||
|
|
||||||
#include "../mwworld/ptr.hpp"
|
#include "../mwworld/ptr.hpp"
|
||||||
|
|
||||||
#include <osg/Quat>
|
|
||||||
|
|
||||||
#include "collisiontype.hpp"
|
#include "collisiontype.hpp"
|
||||||
|
|
||||||
namespace osg
|
namespace osg
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
#include "cellextensions.hpp"
|
#include "cellextensions.hpp"
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
#include "../mwworld/esmstore.hpp"
|
#include "../mwworld/esmstore.hpp"
|
||||||
|
|
||||||
#include <components/compiler/extensions.hpp>
|
#include <components/compiler/extensions.hpp>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
#include "statsextensions.hpp"
|
#include "statsextensions.hpp"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
#include <components/esm/loadnpc.hpp>
|
#include <components/esm/loadnpc.hpp>
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
#include <osg/PositionAttitudeTransform>
|
#include <osg/PositionAttitudeTransform>
|
||||||
|
|
||||||
#include <components/esm/loadcell.hpp>
|
#include <components/esm/loadcell.hpp>
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#ifndef GAME_SOUND_SOUND_H
|
#ifndef GAME_SOUND_SOUND_H
|
||||||
#define GAME_SOUND_SOUND_H
|
#define GAME_SOUND_SOUND_H
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include "soundmanagerimp.hpp"
|
#include "soundmanagerimp.hpp"
|
||||||
|
|
||||||
namespace MWSound
|
namespace MWSound
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
#include <components/esm/defs.hpp>
|
#include <components/esm/defs.hpp>
|
||||||
|
|
||||||
#include "../mwbase/environment.hpp"
|
#include "../mwbase/environment.hpp"
|
||||||
|
|
|
@ -14,11 +14,6 @@ namespace ESM
|
||||||
struct ObjectState;
|
struct ObjectState;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Ogre
|
|
||||||
{
|
|
||||||
class Vector3;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace MWRender
|
namespace MWRender
|
||||||
{
|
{
|
||||||
class RenderingInterface;
|
class RenderingInterface;
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
|
|
||||||
#include "../mwmechanics/drawstate.hpp"
|
#include "../mwmechanics/drawstate.hpp"
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
|
|
||||||
namespace ESM
|
namespace ESM
|
||||||
{
|
{
|
||||||
struct NPC;
|
struct NPC;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
|
|
||||||
#include "refdata.hpp"
|
#include "refdata.hpp"
|
||||||
|
|
||||||
#include <OgreSceneNode.h>
|
|
||||||
|
|
||||||
#include <components/esm/objectstate.hpp>
|
#include <components/esm/objectstate.hpp>
|
||||||
|
|
||||||
#include "customdata.hpp"
|
#include "customdata.hpp"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "scene.hpp"
|
#include "scene.hpp"
|
||||||
|
|
||||||
#include <OgreSceneNode.h>
|
#include <limits>
|
||||||
|
|
||||||
#include <components/nif/niffile.hpp>
|
#include <components/nif/niffile.hpp>
|
||||||
#include <components/misc/resourcehelpers.hpp>
|
#include <components/misc/resourcehelpers.hpp>
|
||||||
|
|
|
@ -13,11 +13,6 @@ namespace osg
|
||||||
class Vec3f;
|
class Vec3f;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Ogre
|
|
||||||
{
|
|
||||||
class Vector3;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace ESM
|
namespace ESM
|
||||||
{
|
{
|
||||||
struct Position;
|
struct Position;
|
||||||
|
|
|
@ -3,9 +3,8 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include <OgreColourValue.h>
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
#include <osg/Vec4f>
|
#include <osg/Vec4f>
|
||||||
|
|
||||||
#include "../mwbase/soundmanager.hpp"
|
#include "../mwbase/soundmanager.hpp"
|
||||||
|
|
|
@ -35,11 +35,6 @@ namespace Resource
|
||||||
class ResourceSystem;
|
class ResourceSystem;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Ogre
|
|
||||||
{
|
|
||||||
class Vector3;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace ESM
|
namespace ESM
|
||||||
{
|
{
|
||||||
struct Position;
|
struct Position;
|
||||||
|
|
|
@ -84,7 +84,7 @@ ELSE (WIN32) #Unix
|
||||||
STRING(REGEX REPLACE ".*/" "" MYGUI_LIBRARIES "${MYGUI_LIBRARIES}")
|
STRING(REGEX REPLACE ".*/" "" MYGUI_LIBRARIES "${MYGUI_LIBRARIES}")
|
||||||
ENDIF (MYGUI_INCLUDE_DIRS)
|
ENDIF (MYGUI_INCLUDE_DIRS)
|
||||||
ELSE (NOT APPLE)
|
ELSE (NOT APPLE)
|
||||||
SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ${MYGUI_DEPENDENCIES_DIR} ${OGRE_DEPENDENCIES_DIR})
|
SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ${MYGUI_DEPENDENCIES_DIR})
|
||||||
FIND_PACKAGE(freetype)
|
FIND_PACKAGE(freetype)
|
||||||
FIND_PATH(MYGUI_INCLUDE_DIRS MyGUI.h PATHS /usr/local/include /usr/include PATH_SUFFIXES MyGUI MYGUI)
|
FIND_PATH(MYGUI_INCLUDE_DIRS MyGUI.h PATHS /usr/local/include /usr/include PATH_SUFFIXES MyGUI MYGUI)
|
||||||
FIND_LIBRARY(MYGUI_LIBRARIES MyGUIEngineStatic PATHS /usr/lib /usr/local/lib)
|
FIND_LIBRARY(MYGUI_LIBRARIES MyGUIEngineStatic PATHS /usr/lib /usr/local/lib)
|
||||||
|
|
|
@ -1,568 +0,0 @@
|
||||||
#-------------------------------------------------------------------
|
|
||||||
# This file is part of the CMake build system for OGRE
|
|
||||||
# (Object-oriented Graphics Rendering Engine)
|
|
||||||
# For the latest info, see http://www.ogre3d.org/
|
|
||||||
#
|
|
||||||
# The contents of this file are placed in the public domain. Feel
|
|
||||||
# free to make use of it in any way you like.
|
|
||||||
#-------------------------------------------------------------------
|
|
||||||
|
|
||||||
# - Try to find OGRE
|
|
||||||
# If you have multiple versions of Ogre installed, use the CMake or
|
|
||||||
# the environment variable OGRE_HOME to point to the path where the
|
|
||||||
# desired Ogre version can be found.
|
|
||||||
# By default this script will look for a dynamic Ogre build. If you
|
|
||||||
# need to link against static Ogre libraries, set the CMake variable
|
|
||||||
# OGRE_STATIC to TRUE.
|
|
||||||
#
|
|
||||||
# Once done, this will define
|
|
||||||
#
|
|
||||||
# OGRE_FOUND - system has OGRE
|
|
||||||
# OGRE_INCLUDE_DIRS - the OGRE include directories
|
|
||||||
# OGRE_LIBRARIES - link these to use the OGRE core
|
|
||||||
# OGRE_BINARY_REL - location of the main Ogre binary (win32 non-static only, release)
|
|
||||||
# OGRE_BINARY_DBG - location of the main Ogre binaries (win32 non-static only, debug)
|
|
||||||
#
|
|
||||||
# Additionally this script searches for the following optional
|
|
||||||
# parts of the Ogre package:
|
|
||||||
# Plugin_BSPSceneManager, Plugin_CgProgramManager,
|
|
||||||
# Plugin_OctreeSceneManager, Plugin_OctreeZone,
|
|
||||||
# Plugin_ParticleFX, Plugin_PCZSceneManager,
|
|
||||||
# RenderSystem_GL, RenderSystem_Direct3D9, RenderSystem_Direct3D10,
|
|
||||||
# Paging, Terrain
|
|
||||||
#
|
|
||||||
# For each of these components, the following variables are defined:
|
|
||||||
#
|
|
||||||
# OGRE_${COMPONENT}_FOUND - ${COMPONENT} is available
|
|
||||||
# OGRE_${COMPONENT}_INCLUDE_DIRS - additional include directories for ${COMPONENT}
|
|
||||||
# OGRE_${COMPONENT}_LIBRARIES - link these to use ${COMPONENT}
|
|
||||||
# OGRE_${COMPONENT}_BINARY_REL - location of the component binary (win32 non-static only, release)
|
|
||||||
# OGRE_${COMPONENT}_BINARY_DBG - location of the component binary (win32 non-static only, debug)
|
|
||||||
#
|
|
||||||
# Finally, the following variables are defined:
|
|
||||||
#
|
|
||||||
# OGRE_PLUGIN_DIR_REL - The directory where the release versions of
|
|
||||||
# the OGRE plugins are located
|
|
||||||
# OGRE_PLUGIN_DIR_DBG - The directory where the debug versions of
|
|
||||||
# the OGRE plugins are located
|
|
||||||
# OGRE_MEDIA_DIR - The directory where the OGRE sample media is
|
|
||||||
# located, if available
|
|
||||||
|
|
||||||
include(FindPkgMacros)
|
|
||||||
include(PreprocessorUtils)
|
|
||||||
findpkg_begin(OGRE)
|
|
||||||
|
|
||||||
|
|
||||||
# Get path, convert backslashes as ${ENV_${var}}
|
|
||||||
getenv_path(OGRE_HOME)
|
|
||||||
getenv_path(OGRE_SDK)
|
|
||||||
getenv_path(OGRE_SOURCE)
|
|
||||||
getenv_path(OGRE_BUILD)
|
|
||||||
getenv_path(OGRE_DEPENDENCIES_DIR)
|
|
||||||
getenv_path(PROGRAMFILES)
|
|
||||||
|
|
||||||
# Determine whether to search for a dynamic or static build
|
|
||||||
if (OGRE_STATIC)
|
|
||||||
set(OGRE_LIB_SUFFIX "Static")
|
|
||||||
else ()
|
|
||||||
set(OGRE_LIB_SUFFIX "")
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
|
|
||||||
set(OGRE_LIBRARY_NAMES "OgreMain${OGRE_LIB_SUFFIX}")
|
|
||||||
get_debug_names(OGRE_LIBRARY_NAMES)
|
|
||||||
|
|
||||||
# construct search paths from environmental hints and
|
|
||||||
# OS specific guesses
|
|
||||||
if (WIN32)
|
|
||||||
set(OGRE_PREFIX_GUESSES
|
|
||||||
${ENV_PROGRAMFILES}/OGRE
|
|
||||||
C:/OgreSDK
|
|
||||||
)
|
|
||||||
elseif (UNIX)
|
|
||||||
set(OGRE_PREFIX_GUESSES
|
|
||||||
/opt/ogre
|
|
||||||
/opt/OGRE
|
|
||||||
/usr/lib${LIB_SUFFIX}/ogre
|
|
||||||
/usr/lib${LIB_SUFFIX}/OGRE
|
|
||||||
/usr/local/lib${LIB_SUFFIX}/ogre
|
|
||||||
/usr/local/lib${LIB_SUFFIX}/OGRE
|
|
||||||
$ENV{HOME}/ogre
|
|
||||||
$ENV{HOME}/OGRE
|
|
||||||
)
|
|
||||||
endif ()
|
|
||||||
set(OGRE_PREFIX_PATH
|
|
||||||
${OGRE_HOME} ${OGRE_SDK} ${ENV_OGRE_HOME} ${ENV_OGRE_SDK}
|
|
||||||
${OGRE_PREFIX_GUESSES}
|
|
||||||
)
|
|
||||||
create_search_paths(OGRE)
|
|
||||||
# If both OGRE_BUILD and OGRE_SOURCE are set, prepare to find Ogre in a build dir
|
|
||||||
set(OGRE_PREFIX_SOURCE ${OGRE_SOURCE} ${ENV_OGRE_SOURCE})
|
|
||||||
set(OGRE_PREFIX_BUILD ${OGRE_BUILD} ${ENV_OGRE_BUILD})
|
|
||||||
set(OGRE_PREFIX_DEPENDENCIES_DIR ${OGRE_DEPENDENCIES_DIR} ${ENV_OGRE_DEPENDENCIES_DIR})
|
|
||||||
if (OGRE_PREFIX_SOURCE AND OGRE_PREFIX_BUILD)
|
|
||||||
foreach(dir ${OGRE_PREFIX_SOURCE})
|
|
||||||
set(OGRE_INC_SEARCH_PATH ${dir}/OgreMain/include ${dir}/Dependencies/include ${dir}/iPhoneDependencies/include ${OGRE_INC_SEARCH_PATH})
|
|
||||||
set(OGRE_LIB_SEARCH_PATH ${dir}/lib ${dir}/Dependencies/lib ${dir}/iPhoneDependencies/lib ${OGRE_LIB_SEARCH_PATH})
|
|
||||||
set(OGRE_BIN_SEARCH_PATH ${dir}/Samples/Common/bin ${OGRE_BIN_SEARCH_PATH})
|
|
||||||
endforeach(dir)
|
|
||||||
foreach(dir ${OGRE_PREFIX_BUILD})
|
|
||||||
set(OGRE_INC_SEARCH_PATH ${dir}/include ${OGRE_INC_SEARCH_PATH})
|
|
||||||
set(OGRE_LIB_SEARCH_PATH ${dir}/lib ${OGRE_LIB_SEARCH_PATH})
|
|
||||||
set(OGRE_BIN_SEARCH_PATH ${dir}/bin ${OGRE_BIN_SEARCH_PATH})
|
|
||||||
set(OGRE_BIN_SEARCH_PATH ${dir}/Samples/Common/bin ${OGRE_BIN_SEARCH_PATH})
|
|
||||||
endforeach(dir)
|
|
||||||
|
|
||||||
if (OGRE_PREFIX_DEPENDENCIES_DIR)
|
|
||||||
set(OGRE_INC_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/include ${OGRE_INC_SEARCH_PATH})
|
|
||||||
set(OGRE_LIB_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/lib ${OGRE_LIB_SEARCH_PATH})
|
|
||||||
set(OGRE_BIN_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/bin ${OGRE_BIN_SEARCH_PATH})
|
|
||||||
endif()
|
|
||||||
else()
|
|
||||||
set(OGRE_PREFIX_SOURCE "NOTFOUND")
|
|
||||||
set(OGRE_PREFIX_BUILD "NOTFOUND")
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
# redo search if any of the environmental hints changed
|
|
||||||
set(OGRE_COMPONENTS Paging Terrain Overlay
|
|
||||||
Plugin_BSPSceneManager Plugin_CgProgramManager Plugin_OctreeSceneManager
|
|
||||||
Plugin_OctreeZone Plugin_PCZSceneManager Plugin_ParticleFX
|
|
||||||
RenderSystem_Direct3D10 RenderSystem_Direct3D9 RenderSystem_GL RenderSystem_GLES2)
|
|
||||||
set(OGRE_RESET_VARS
|
|
||||||
OGRE_CONFIG_INCLUDE_DIR OGRE_INCLUDE_DIR
|
|
||||||
OGRE_LIBRARY_FWK OGRE_LIBRARY_REL OGRE_LIBRARY_DBG
|
|
||||||
OGRE_PLUGIN_DIR_DBG OGRE_PLUGIN_DIR_REL OGRE_MEDIA_DIR)
|
|
||||||
foreach (comp ${OGRE_COMPONENTS})
|
|
||||||
set(OGRE_RESET_VARS ${OGRE_RESET_VARS}
|
|
||||||
OGRE_${comp}_INCLUDE_DIR OGRE_${comp}_LIBRARY_FWK
|
|
||||||
OGRE_${comp}_LIBRARY_DBG OGRE_${comp}_LIBRARY_REL
|
|
||||||
)
|
|
||||||
endforeach (comp)
|
|
||||||
set(OGRE_PREFIX_WATCH ${OGRE_PREFIX_PATH} ${OGRE_PREFIX_SOURCE} ${OGRE_PREFIX_BUILD})
|
|
||||||
clear_if_changed(OGRE_PREFIX_WATCH ${OGRE_RESET_VARS})
|
|
||||||
|
|
||||||
# try to locate Ogre via pkg-config
|
|
||||||
use_pkgconfig(OGRE_PKGC "OGRE${OGRE_LIB_SUFFIX}")
|
|
||||||
|
|
||||||
if(NOT OGRE_BUILD_PLATFORM_IPHONE AND APPLE)
|
|
||||||
# try to find framework on OSX
|
|
||||||
findpkg_framework(OGRE)
|
|
||||||
else()
|
|
||||||
set(OGRE_LIBRARY_FWK "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# locate Ogre include files
|
|
||||||
find_path(OGRE_CONFIG_INCLUDE_DIR NAMES OgreBuildSettings.h HINTS ${OGRE_INC_SEARCH_PATH} ${OGRE_FRAMEWORK_INCLUDES} ${OGRE_PKGC_INCLUDE_DIRS} PATH_SUFFIXES "OGRE")
|
|
||||||
find_path(OGRE_INCLUDE_DIR NAMES OgreRoot.h HINTS ${OGRE_CONFIG_INCLUDE_DIR} ${OGRE_INC_SEARCH_PATH} ${OGRE_FRAMEWORK_INCLUDES} ${OGRE_PKGC_INCLUDE_DIRS} PATH_SUFFIXES "OGRE")
|
|
||||||
set(OGRE_INCOMPATIBLE FALSE)
|
|
||||||
|
|
||||||
if (OGRE_INCLUDE_DIR)
|
|
||||||
if (NOT OGRE_CONFIG_INCLUDE_DIR)
|
|
||||||
set(OGRE_CONFIG_INCLUDE_DIR ${OGRE_INCLUDE_DIR})
|
|
||||||
endif ()
|
|
||||||
# determine Ogre version
|
|
||||||
file(READ ${OGRE_INCLUDE_DIR}/OgrePrerequisites.h OGRE_TEMP_VERSION_CONTENT)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_MAJOR OGRE_VERSION_MAJOR)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_MINOR OGRE_VERSION_MINOR)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_PATCH OGRE_VERSION_PATCH)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_NAME OGRE_VERSION_NAME)
|
|
||||||
set(OGRE_VERSION "${OGRE_VERSION_MAJOR}.${OGRE_VERSION_MINOR}.${OGRE_VERSION_PATCH}")
|
|
||||||
pkg_message(OGRE "Found Ogre ${OGRE_VERSION_NAME} (${OGRE_VERSION})")
|
|
||||||
|
|
||||||
# determine configuration settings
|
|
||||||
set(OGRE_CONFIG_HEADERS
|
|
||||||
${OGRE_CONFIG_INCLUDE_DIR}/OgreBuildSettings.h
|
|
||||||
${OGRE_CONFIG_INCLUDE_DIR}/OgreConfig.h
|
|
||||||
)
|
|
||||||
foreach(CFG_FILE ${OGRE_CONFIG_HEADERS})
|
|
||||||
if (EXISTS ${CFG_FILE})
|
|
||||||
set(OGRE_CONFIG_HEADER ${CFG_FILE})
|
|
||||||
break()
|
|
||||||
endif()
|
|
||||||
endforeach()
|
|
||||||
if (OGRE_CONFIG_HEADER)
|
|
||||||
file(READ ${OGRE_CONFIG_HEADER} OGRE_TEMP_CONFIG_CONTENT)
|
|
||||||
has_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_STATIC_LIB OGRE_CONFIG_STATIC)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_THREAD_SUPPORT OGRE_CONFIG_THREADS)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_THREAD_PROVIDER OGRE_CONFIG_THREAD_PROVIDER)
|
|
||||||
get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_NO_FREEIMAGE OGRE_CONFIG_FREEIMAGE)
|
|
||||||
if (OGRE_CONFIG_STATIC AND OGRE_STATIC)
|
|
||||||
elseif (OGRE_CONFIG_STATIC OR OGRE_STATIC)
|
|
||||||
pkg_message(OGRE "Build type (static, dynamic) does not match the requested one.")
|
|
||||||
set(OGRE_INCOMPATIBLE TRUE)
|
|
||||||
endif ()
|
|
||||||
else ()
|
|
||||||
pkg_message(OGRE "Could not determine Ogre build configuration.")
|
|
||||||
set(OGRE_INCOMPATIBLE TRUE)
|
|
||||||
endif ()
|
|
||||||
else ()
|
|
||||||
set(OGRE_INCOMPATIBLE FALSE)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
find_library(OGRE_LIBRARY_REL NAMES ${OGRE_LIBRARY_NAMES} HINTS ${OGRE_LIB_SEARCH_PATH} ${OGRE_PKGC_LIBRARY_DIRS} ${OGRE_FRAMEWORK_SEARCH_PATH} PATH_SUFFIXES "" "release" "relwithdebinfo" "minsizerel")
|
|
||||||
find_library(OGRE_LIBRARY_DBG NAMES ${OGRE_LIBRARY_NAMES_DBG} HINTS ${OGRE_LIB_SEARCH_PATH} ${OGRE_PKGC_LIBRARY_DIRS} ${OGRE_FRAMEWORK_SEARCH_PATH} PATH_SUFFIXES "" "debug")
|
|
||||||
make_library_set(OGRE_LIBRARY)
|
|
||||||
|
|
||||||
if(APPLE)
|
|
||||||
set(OGRE_LIBRARY_DBG ${OGRE_LIB_SEARCH_PATH})
|
|
||||||
endif()
|
|
||||||
if (OGRE_INCOMPATIBLE)
|
|
||||||
set(OGRE_LIBRARY "NOTFOUND")
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
set(OGRE_INCLUDE_DIR ${OGRE_CONFIG_INCLUDE_DIR} ${OGRE_INCLUDE_DIR})
|
|
||||||
list(REMOVE_DUPLICATES OGRE_INCLUDE_DIR)
|
|
||||||
findpkg_finish(OGRE)
|
|
||||||
add_parent_dir(OGRE_INCLUDE_DIRS OGRE_INCLUDE_DIR)
|
|
||||||
if (OGRE_SOURCE)
|
|
||||||
# If working from source rather than SDK, add samples include
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} "${OGRE_SOURCE}/Samples/Common/include")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
mark_as_advanced(OGRE_CONFIG_INCLUDE_DIR OGRE_MEDIA_DIR OGRE_PLUGIN_DIR_REL OGRE_PLUGIN_DIR_DBG)
|
|
||||||
|
|
||||||
if (NOT OGRE_FOUND)
|
|
||||||
return()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
|
|
||||||
# look for required Ogre dependencies in case of static build and/or threading
|
|
||||||
if (OGRE_STATIC)
|
|
||||||
set(OGRE_DEPS_FOUND TRUE)
|
|
||||||
find_package(Cg QUIET)
|
|
||||||
find_package(DirectX QUIET)
|
|
||||||
find_package(FreeImage QUIET)
|
|
||||||
find_package(Freetype QUIET)
|
|
||||||
find_package(OpenGL QUIET)
|
|
||||||
find_package(OpenGLES2 QUIET)
|
|
||||||
find_package(ZLIB QUIET)
|
|
||||||
find_package(ZZip QUIET)
|
|
||||||
if (UNIX AND (NOT APPLE AND NOT ANDROID))
|
|
||||||
find_package(X11 QUIET)
|
|
||||||
find_library(XAW_LIBRARY NAMES Xaw Xaw7 PATHS ${DEP_LIB_SEARCH_DIR} ${X11_LIB_SEARCH_PATH})
|
|
||||||
if (NOT XAW_LIBRARY OR NOT X11_Xt_FOUND)
|
|
||||||
set(X11_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
if (APPLE AND NOT OGRE_BUILD_PLATFORM_IPHONE)
|
|
||||||
find_package(Cocoa QUIET)
|
|
||||||
find_package(Carbon QUIET)
|
|
||||||
if (NOT Cocoa_FOUND OR NOT Carbon_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
if (APPLE AND OGRE_BUILD_PLATFORM_IPHONE)
|
|
||||||
find_package(iPhoneSDK QUIET)
|
|
||||||
if (NOT iPhoneSDK_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (ANDROID)
|
|
||||||
set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${OGRE_LIBRARY_FWK} ${ZZip_LIBRARIES} ${ZLIB_LIBRARIES}
|
|
||||||
${FreeImage_LIBRARIES} ${FREETYPE_LIBRARIES}
|
|
||||||
${Cocoa_LIBRARIES} ${Carbon_LIBRARIES})
|
|
||||||
else ()
|
|
||||||
set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${OGRE_LIBRARY_FWK} ${ZZip_LIBRARIES} ${ZLIB_LIBRARIES}
|
|
||||||
${FreeImage_LIBRARIES} ${FREETYPE_LIBRARIES}
|
|
||||||
${X11_LIBRARIES} ${X11_Xt_LIBRARIES} ${XAW_LIBRARY} ${X11_Xrandr_LIB}
|
|
||||||
${Cocoa_LIBRARIES} ${Carbon_LIBRARIES})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (NOT ZLIB_FOUND OR NOT ZZip_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (NOT FreeImage_FOUND AND NOT OGRE_CONFIG_FREEIMAGE)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (NOT FREETYPE_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (UNIX AND NOT APPLE AND NOT ANDROID)
|
|
||||||
if (NOT X11_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (OGRE_CONFIG_THREADS)
|
|
||||||
if (OGRE_CONFIG_THREAD_PROVIDER EQUAL 1)
|
|
||||||
find_package(Boost COMPONENTS thread QUIET)
|
|
||||||
if (NOT Boost_THREAD_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
else ()
|
|
||||||
set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${Boost_LIBRARIES})
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS})
|
|
||||||
endif ()
|
|
||||||
elseif (OGRE_CONFIG_THREAD_PROVIDER EQUAL 2)
|
|
||||||
find_package(POCO QUIET)
|
|
||||||
if (NOT POCO_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
else ()
|
|
||||||
set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${POCO_LIBRARIES})
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${POCO_INCLUDE_DIRS})
|
|
||||||
endif ()
|
|
||||||
elseif (OGRE_CONFIG_THREAD_PROVIDER EQUAL 3)
|
|
||||||
find_package(TBB QUIET)
|
|
||||||
if (NOT TBB_FOUND)
|
|
||||||
set(OGRE_DEPS_FOUND FALSE)
|
|
||||||
else ()
|
|
||||||
set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${TBB_LIBRARIES})
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${TBB_INCLUDE_DIRS})
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (NOT OGRE_DEPS_FOUND)
|
|
||||||
pkg_message(OGRE "Could not find all required dependencies for the Ogre package.")
|
|
||||||
set(OGRE_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (NOT OGRE_FOUND)
|
|
||||||
return()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
|
|
||||||
get_filename_component(OGRE_LIBRARY_DIR_REL "${OGRE_LIBRARY_REL}" PATH)
|
|
||||||
get_filename_component(OGRE_LIBRARY_DIR_DBG "${OGRE_LIBRARY_DBG}" PATH)
|
|
||||||
set(OGRE_LIBRARY_DIRS ${OGRE_LIBRARY_DIR_REL} ${OGRE_LIBRARY_DIR_DBG})
|
|
||||||
|
|
||||||
# find binaries
|
|
||||||
if (NOT OGRE_STATIC)
|
|
||||||
if (WIN32)
|
|
||||||
find_file(OGRE_BINARY_REL NAMES "OgreMain.dll" HINTS ${OGRE_BIN_SEARCH_PATH}
|
|
||||||
PATH_SUFFIXES "" release relwithdebinfo minsizerel)
|
|
||||||
find_file(OGRE_BINARY_DBG NAMES "OgreMain_d.dll" HINTS ${OGRE_BIN_SEARCH_PATH}
|
|
||||||
PATH_SUFFIXES "" debug )
|
|
||||||
endif()
|
|
||||||
mark_as_advanced(OGRE_BINARY_REL OGRE_BINARY_DBG)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
#########################################################
|
|
||||||
# Find Ogre components
|
|
||||||
#########################################################
|
|
||||||
|
|
||||||
set(OGRE_COMPONENT_SEARCH_PATH_REL
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/..
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/../..
|
|
||||||
${OGRE_BIN_SEARCH_PATH}
|
|
||||||
)
|
|
||||||
set(OGRE_COMPONENT_SEARCH_PATH_DBG
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/..
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/../..
|
|
||||||
${OGRE_BIN_SEARCH_PATH}
|
|
||||||
)
|
|
||||||
|
|
||||||
macro(ogre_find_component COMPONENT HEADER)
|
|
||||||
findpkg_begin(OGRE_${COMPONENT})
|
|
||||||
find_path(OGRE_${COMPONENT}_INCLUDE_DIR NAMES ${HEADER} HINTS ${OGRE_INCLUDE_DIRS} ${OGRE_INCLUDE_DIR}/OGRE/${COMPONENT} ${OGRE_PREFIX_SOURCE} PATH_SUFFIXES ${COMPONENT} OGRE/${COMPONENT} Components/${COMPONENT}/include)
|
|
||||||
set(OGRE_${COMPONENT}_LIBRARY_NAMES "Ogre${COMPONENT}${OGRE_LIB_SUFFIX}")
|
|
||||||
get_debug_names(OGRE_${COMPONENT}_LIBRARY_NAMES)
|
|
||||||
find_library(OGRE_${COMPONENT}_LIBRARY_REL NAMES ${OGRE_${COMPONENT}_LIBRARY_NAMES} HINTS ${OGRE_LIBRARY_DIR_REL} PATH_SUFFIXES "" "release" "relwithdebinfo" "minsizerel")
|
|
||||||
find_library(OGRE_${COMPONENT}_LIBRARY_DBG NAMES ${OGRE_${COMPONENT}_LIBRARY_NAMES_DBG} HINTS ${OGRE_LIBRARY_DIR_DBG} PATH_SUFFIXES "" "debug")
|
|
||||||
make_library_set(OGRE_${COMPONENT}_LIBRARY)
|
|
||||||
findpkg_finish(OGRE_${COMPONENT})
|
|
||||||
if (OGRE_${COMPONENT}_FOUND)
|
|
||||||
if (APPLE)
|
|
||||||
include_directories("${OGRE_INCLUDE_DIR}/OGRE/${COMPONENT}")
|
|
||||||
endif()
|
|
||||||
# find binaries
|
|
||||||
if (NOT OGRE_STATIC)
|
|
||||||
if (WIN32)
|
|
||||||
find_file(OGRE_${COMPONENT}_BINARY_REL NAMES "Ogre${COMPONENT}.dll" HINTS ${OGRE_COMPONENT_SEARCH_PATH_REL} PATH_SUFFIXES "" bin bin/release bin/relwithdebinfo bin/minsizerel release)
|
|
||||||
find_file(OGRE_${COMPONENT}_BINARY_DBG NAMES "Ogre${COMPONENT}_d.dll" HINTS ${OGRE_COMPONENT_SEARCH_PATH_DBG} PATH_SUFFIXES "" bin bin/debug debug)
|
|
||||||
endif()
|
|
||||||
mark_as_advanced(OGRE_${COMPONENT}_BINARY_REL OGRE_${COMPONENT}_BINARY_DBG)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
endmacro()
|
|
||||||
|
|
||||||
# look for Paging component
|
|
||||||
ogre_find_component(Paging OgrePaging.h)
|
|
||||||
# look for Overlay component
|
|
||||||
ogre_find_component(Overlay OgreOverlaySystem.h)
|
|
||||||
# look for Terrain component
|
|
||||||
ogre_find_component(Terrain OgreTerrain.h)
|
|
||||||
# look for Property component
|
|
||||||
ogre_find_component(Property OgreProperty.h)
|
|
||||||
# look for RTShaderSystem component
|
|
||||||
ogre_find_component(RTShaderSystem OgreRTShaderSystem.h)
|
|
||||||
|
|
||||||
|
|
||||||
#########################################################
|
|
||||||
# Find Ogre plugins
|
|
||||||
#########################################################
|
|
||||||
|
|
||||||
macro(ogre_find_plugin PLUGIN HEADER)
|
|
||||||
# On Unix, the plugins might have no prefix
|
|
||||||
if (CMAKE_FIND_LIBRARY_PREFIXES)
|
|
||||||
set(TMP_CMAKE_LIB_PREFIX ${CMAKE_FIND_LIBRARY_PREFIXES})
|
|
||||||
set(CMAKE_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES} "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# strip RenderSystem_ or Plugin_ prefix from plugin name
|
|
||||||
string(REPLACE "RenderSystem_" "" PLUGIN_TEMP ${PLUGIN})
|
|
||||||
string(REPLACE "Plugin_" "" PLUGIN_NAME ${PLUGIN_TEMP})
|
|
||||||
|
|
||||||
# header files for plugins are not usually needed, but find them anyway if they are present
|
|
||||||
set(OGRE_PLUGIN_PATH_SUFFIXES
|
|
||||||
PlugIns PlugIns/${PLUGIN_NAME} Plugins Plugins/${PLUGIN_NAME} ${PLUGIN}
|
|
||||||
RenderSystems RenderSystems/${PLUGIN_NAME} ${ARGN})
|
|
||||||
find_path(OGRE_${PLUGIN}_INCLUDE_DIR NAMES ${HEADER}
|
|
||||||
HINTS ${OGRE_INCLUDE_DIRS} ${OGRE_PREFIX_SOURCE}
|
|
||||||
PATH_SUFFIXES ${OGRE_PLUGIN_PATH_SUFFIXES})
|
|
||||||
# find link libraries for plugins
|
|
||||||
set(OGRE_${PLUGIN}_LIBRARY_NAMES "${PLUGIN}${OGRE_LIB_SUFFIX}")
|
|
||||||
get_debug_names(OGRE_${PLUGIN}_LIBRARY_NAMES)
|
|
||||||
set(OGRE_${PLUGIN}_LIBRARY_FWK ${OGRE_LIBRARY_FWK})
|
|
||||||
# Search for release plugins in OGRE dir with version suffix
|
|
||||||
find_library(OGRE_${PLUGIN}_LIBRARY_REL NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES}
|
|
||||||
HINTS ${OGRE_LIBRARY_DIRS} PATH_SUFFIXES "" OGRE-${OGRE_VERSION} opt release release/opt relwithdebinfo relwithdebinfo/opt minsizerel minsizerel/opt)
|
|
||||||
if(NOT EXISTS "${OGRE_${PLUGIN}_LIBRARY_REL}")
|
|
||||||
# Search for release plugins in OGRE dir without version suffix
|
|
||||||
find_library(OGRE_${PLUGIN}_LIBRARY_REL NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES}
|
|
||||||
HINTS ${OGRE_LIBRARY_DIRS} PATH_SUFFIXES "" OGRE opt release release/opt relwithdebinfo relwithdebinfo/opt minsizerel minsizerel/opt)
|
|
||||||
endif()
|
|
||||||
# Search for debug plugins in OGRE dir with version suffix
|
|
||||||
find_library(OGRE_${PLUGIN}_LIBRARY_DBG NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES_DBG}
|
|
||||||
HINTS ${OGRE_LIBRARY_DIRS} PATH_SUFFIXES "" OGRE-${OGRE_VERSION} opt debug debug/opt)
|
|
||||||
if(NOT EXISTS "${OGRE_${PLUGIN}_LIBRARY_DBG}")
|
|
||||||
# Search for debug plugins in OGRE dir without version suffix
|
|
||||||
find_library(OGRE_${PLUGIN}_LIBRARY_DBG NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES_DBG}
|
|
||||||
HINTS ${OGRE_LIBRARY_DIRS} PATH_SUFFIXES "" OGRE opt debug debug/opt)
|
|
||||||
endif()
|
|
||||||
make_library_set(OGRE_${PLUGIN}_LIBRARY)
|
|
||||||
|
|
||||||
if (OGRE_${PLUGIN}_LIBRARY OR OGRE_${PLUGIN}_INCLUDE_DIR)
|
|
||||||
set(OGRE_${PLUGIN}_FOUND TRUE)
|
|
||||||
if (OGRE_${PLUGIN}_INCLUDE_DIR)
|
|
||||||
set(OGRE_${PLUGIN}_INCLUDE_DIRS ${OGRE_${PLUGIN}_INCLUDE_DIR})
|
|
||||||
endif()
|
|
||||||
set(OGRE_${PLUGIN}_LIBRARIES ${OGRE_${PLUGIN}_LIBRARY})
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
mark_as_advanced(OGRE_${PLUGIN}_INCLUDE_DIR OGRE_${PLUGIN}_LIBRARY_REL OGRE_${PLUGIN}_LIBRARY_DBG OGRE_${PLUGIN}_LIBRARY_FWK)
|
|
||||||
|
|
||||||
# look for plugin dirs
|
|
||||||
if (OGRE_${PLUGIN}_FOUND)
|
|
||||||
if (NOT OGRE_PLUGIN_DIR_REL OR NOT OGRE_PLUGIN_DIR_DBG)
|
|
||||||
if (WIN32)
|
|
||||||
set(OGRE_PLUGIN_SEARCH_PATH_REL
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/..
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/../..
|
|
||||||
${OGRE_BIN_SEARCH_PATH}
|
|
||||||
)
|
|
||||||
set(OGRE_PLUGIN_SEARCH_PATH_DBG
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/..
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/../..
|
|
||||||
${OGRE_BIN_SEARCH_PATH}
|
|
||||||
)
|
|
||||||
find_path(OGRE_PLUGIN_DIR_REL NAMES "${PLUGIN}.dll" HINTS ${OGRE_PLUGIN_SEARCH_PATH_REL}
|
|
||||||
PATH_SUFFIXES "" bin bin/release bin/relwithdebinfo bin/minsizerel release)
|
|
||||||
find_path(OGRE_PLUGIN_DIR_DBG NAMES "${PLUGIN}_d.dll" HINTS ${OGRE_PLUGIN_SEARCH_PATH_DBG}
|
|
||||||
PATH_SUFFIXES "" bin bin/debug debug)
|
|
||||||
elseif (UNIX)
|
|
||||||
get_filename_component(OGRE_PLUGIN_DIR_TMP ${OGRE_${PLUGIN}_LIBRARY_REL} PATH)
|
|
||||||
# For some reason this fails
|
|
||||||
#set(OGRE_PLUGIN_DIR_REL ${OGRE_PLUGIN_DIR_TMP} CACHE STRING "Ogre plugin dir (release)")
|
|
||||||
set(OGRE_PLUGIN_DIR_REL ${OGRE_PLUGIN_DIR_TMP})
|
|
||||||
get_filename_component(OGRE_PLUGIN_DIR_TMP ${OGRE_${PLUGIN}_LIBRARY_DBG} PATH)
|
|
||||||
# Same here
|
|
||||||
#set(OGRE_PLUGIN_DIR_DBG ${OGRE_PLUGIN_DIR_TMP} CACHE STRING "Ogre plugin dir (debug)")
|
|
||||||
set(OGRE_PLUGIN_DIR_DBG ${OGRE_PLUGIN_DIR_TMP})
|
|
||||||
endif ()
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
# find binaries
|
|
||||||
if (NOT OGRE_STATIC)
|
|
||||||
if (WIN32)
|
|
||||||
find_file(OGRE_${PLUGIN}_REL NAMES "${PLUGIN}.dll" HINTS ${OGRE_PLUGIN_DIR_REL})
|
|
||||||
find_file(OGRE_${PLUGIN}_DBG NAMES "${PLUGIN}_d.dll" HINTS ${OGRE_PLUGIN_DIR_DBG})
|
|
||||||
endif()
|
|
||||||
mark_as_advanced(OGRE_${PLUGIN}_REL OGRE_${PLUGIN}_DBG)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (TMP_CMAKE_LIB_PREFIX)
|
|
||||||
set(CMAKE_FIND_LIBRARY_PREFIXES ${TMP_CMAKE_LIB_PREFIX})
|
|
||||||
endif ()
|
|
||||||
endmacro(ogre_find_plugin)
|
|
||||||
|
|
||||||
ogre_find_plugin(Plugin_PCZSceneManager OgrePCZSceneManager.h PCZ PlugIns/PCZSceneManager/include)
|
|
||||||
ogre_find_plugin(Plugin_OctreeZone OgreOctreeZone.h PCZ PlugIns/OctreeZone/include)
|
|
||||||
ogre_find_plugin(Plugin_BSPSceneManager OgreBspSceneManager.h PlugIns/BSPSceneManager/include)
|
|
||||||
ogre_find_plugin(Plugin_CgProgramManager OgreCgProgram.h PlugIns/CgProgramManager/include)
|
|
||||||
ogre_find_plugin(Plugin_OctreeSceneManager OgreOctreeSceneManager.h PlugIns/OctreeSceneManager/include)
|
|
||||||
ogre_find_plugin(Plugin_ParticleFX OgreParticleFXPrerequisites.h PlugIns/ParticleFX/include)
|
|
||||||
ogre_find_plugin(RenderSystem_GL OgreGLRenderSystem.h RenderSystems/GL/include)
|
|
||||||
ogre_find_plugin(RenderSystem_GLES2 OgreGLES2RenderSystem.h RenderSystems/GLES2/include)
|
|
||||||
ogre_find_plugin(RenderSystem_Direct3D9 OgreD3D9RenderSystem.h RenderSystems/Direct3D9/include)
|
|
||||||
ogre_find_plugin(RenderSystem_Direct3D10 OgreD3D10RenderSystem.h RenderSystems/Direct3D10/include)
|
|
||||||
ogre_find_plugin(RenderSystem_Direct3D11 OgreD3D11RenderSystem.h RenderSystems/Direct3D11/include)
|
|
||||||
|
|
||||||
if (OGRE_STATIC)
|
|
||||||
# check if dependencies for plugins are met
|
|
||||||
if (NOT DirectX9_FOUND)
|
|
||||||
set(OGRE_RenderSystem_Direct3D9_FOUND FALSE)
|
|
||||||
else ()
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${DirectX9_INCLUDE_DIR})
|
|
||||||
endif ()
|
|
||||||
if (NOT DirectX_D3D10_FOUND)
|
|
||||||
set(OGRE_RenderSystem_Direct3D10_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (NOT DirectX_D3D11_FOUND)
|
|
||||||
set(OGRE_RenderSystem_Direct3D11_FOUND FALSE)
|
|
||||||
else ()
|
|
||||||
set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${DirectX_D3D11_INCLUDE_DIR})
|
|
||||||
endif ()
|
|
||||||
if (NOT OPENGL_FOUND)
|
|
||||||
set(OGRE_RenderSystem_GL_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (NOT OPENGLES_FOUND AND NOT OPENGLES2_FOUND)
|
|
||||||
set(OGRE_RenderSystem_GLES_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
if (NOT Cg_FOUND)
|
|
||||||
set(OGRE_Plugin_CgProgramManager_FOUND FALSE)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
set(OGRE_RenderSystem_Direct3D9_LIBRARIES ${OGRE_RenderSystem_Direct3D9_LIBRARIES}
|
|
||||||
${DirectX9_LIBRARIES}
|
|
||||||
)
|
|
||||||
set(OGRE_RenderSystem_Direct3D10_LIBRARIES ${OGRE_RenderSystem_Direct3D10_LIBRARIES}
|
|
||||||
${DirectX_D3D10_LIBRARIES}
|
|
||||||
)
|
|
||||||
set(OGRE_RenderSystem_Direct3D11_LIBRARIES ${OGRE_RenderSystem_Direct3D11_LIBRARIES}
|
|
||||||
${DirectX_D3D11_LIBRARIES}
|
|
||||||
)
|
|
||||||
set(OGRE_RenderSystem_GL_LIBRARIES ${OGRE_RenderSystem_GL_LIBRARIES}
|
|
||||||
${OPENGL_LIBRARIES}
|
|
||||||
)
|
|
||||||
set(OGRE_RenderSystem_GLES2_LIBRARIES ${OGRE_RenderSystem_GLES2_LIBRARIES}
|
|
||||||
${OPENGLES2_LIBRARIES}
|
|
||||||
)
|
|
||||||
set(OGRE_Plugin_CgProgramManager_LIBRARIES ${OGRE_Plugin_CgProgramManager_LIBRARIES}
|
|
||||||
${Cg_LIBRARIES}
|
|
||||||
)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
# look for the media directory
|
|
||||||
set(OGRE_MEDIA_SEARCH_PATH
|
|
||||||
${OGRE_SOURCE}
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/..
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/..
|
|
||||||
${OGRE_LIBRARY_DIR_REL}/../..
|
|
||||||
${OGRE_LIBRARY_DIR_DBG}/../..
|
|
||||||
${OGRE_PREFIX_SOURCE}
|
|
||||||
)
|
|
||||||
set(OGRE_MEDIA_SEARCH_SUFFIX
|
|
||||||
Samples/Media
|
|
||||||
Media
|
|
||||||
media
|
|
||||||
share/OGRE/media
|
|
||||||
)
|
|
||||||
|
|
||||||
clear_if_changed(OGRE_PREFIX_WATCH OGRE_MEDIA_DIR)
|
|
||||||
find_path(OGRE_MEDIA_DIR NAMES packs/cubemapsJS.zip HINTS ${OGRE_MEDIA_SEARCH_PATH}
|
|
||||||
PATHS ${OGRE_PREFIX_PATH} PATH_SUFFIXES ${OGRE_MEDIA_SEARCH_SUFFIX})
|
|
|
@ -174,7 +174,6 @@ add_library(components STATIC ${COMPONENT_FILES} ${MOC_SRCS} ${ESM_UI_HDR})
|
||||||
|
|
||||||
target_link_libraries(components
|
target_link_libraries(components
|
||||||
${Boost_LIBRARIES}
|
${Boost_LIBRARIES}
|
||||||
${OGRE_LIBRARIES}
|
|
||||||
${OPENSCENEGRAPH_LIBRARIES}
|
${OPENSCENEGRAPH_LIBRARIES}
|
||||||
${BULLET_LIBRARIES}
|
${BULLET_LIBRARIES}
|
||||||
${SDL2_LIBRARY}
|
${SDL2_LIBRARY}
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
#ifndef OPENMW_ESM_UTIL_H
|
#ifndef OPENMW_ESM_UTIL_H
|
||||||
#define OPENMW_ESM_UTIL_H
|
#define OPENMW_ESM_UTIL_H
|
||||||
|
|
||||||
#include <OgreVector3.h>
|
|
||||||
#include <OgreQuaternion.h>
|
|
||||||
|
|
||||||
#include <osg/Vec3f>
|
#include <osg/Vec3f>
|
||||||
#include <osg/Quat>
|
#include <osg/Quat>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue