mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 18:59:09 +00:00
PubUtilLib -> cmake part II
This commit is contained in:
@ -0,0 +1,37 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||
|
||||
set(plGLight_SOURCES
|
||||
plDirectShadowMaster.cpp
|
||||
plLightInfo.cpp
|
||||
plLightProxy.cpp
|
||||
plLightSpace.cpp
|
||||
plPerspDirSlave.cpp
|
||||
plPointShadowMaster.cpp
|
||||
plShadowCaster.cpp
|
||||
plShadowMaster.cpp
|
||||
plShadowSlave.cpp
|
||||
)
|
||||
|
||||
set(plGLight_HEADERS
|
||||
plDirectShadowMaster.h
|
||||
plGLightCreatable.h
|
||||
plLightInfo.h
|
||||
plLightKonstants.h
|
||||
plLightProxy.h
|
||||
plLightSpace.h
|
||||
plPerspDirSlave.h
|
||||
plPointShadowMaster.h
|
||||
plShadowCaster.h
|
||||
plShadowMaster.h
|
||||
plShadowSlave.h
|
||||
)
|
||||
|
||||
add_library(plGLight STATIC ${plGLight_SOURCES} ${plGLight_HEADERS})
|
||||
|
||||
source_group("Source Files" FILES ${plGLight_SOURCES})
|
||||
source_group("Header Files" FILES ${plGLight_HEADERS})
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plShadowSlave.h"
|
||||
#include "plPerspDirSlave.h"
|
||||
#include "plShadowCaster.h"
|
||||
#include "../plMessage/plShadowCastMsg.h"
|
||||
#include "plMessage/plShadowCastMsg.h"
|
||||
|
||||
#include "plLightInfo.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plGLightCreatable_inc
|
||||
#define plGLightCreatable_inc
|
||||
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
|
||||
#include "plLightInfo.h"
|
||||
|
||||
|
@ -30,40 +30,40 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsBounds.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../pnMessage/plNodeRefMsg.h"
|
||||
#include "pnMessage/plNodeRefMsg.h"
|
||||
#include "plgDispatch.h"
|
||||
#include "../plIntersect/plVolumeIsect.h"
|
||||
#include "../plDrawable/plSpaceTree.h"
|
||||
#include "../plDrawable/plDrawableGenerator.h"
|
||||
#include "../plDrawable/plDrawableSpans.h"
|
||||
#include "../plPipeline/hsGDeviceRef.h"
|
||||
#include "../plPipeline/plRenderTarget.h"
|
||||
#include "plIntersect/plVolumeIsect.h"
|
||||
#include "plDrawable/plSpaceTree.h"
|
||||
#include "plDrawable/plDrawableGenerator.h"
|
||||
#include "plDrawable/plDrawableSpans.h"
|
||||
#include "plPipeline/hsGDeviceRef.h"
|
||||
#include "plPipeline/plRenderTarget.h"
|
||||
#include "hsFastMath.h"
|
||||
#include "../pnSceneObject/plDrawInterface.h"
|
||||
#include "../plSurface/plLayerInterface.h"
|
||||
#include "../plSurface/plLayer.h"
|
||||
#include "../plSurface/hsGMaterial.h"
|
||||
#include "../plGImage/plMipmap.h"
|
||||
#include "../plMessage/plRenderMsg.h"
|
||||
#include "../plMessage/plRenderRequestMsg.h"
|
||||
#include "../plScene/plRenderRequest.h"
|
||||
#include "pnSceneObject/plDrawInterface.h"
|
||||
#include "plSurface/plLayerInterface.h"
|
||||
#include "plSurface/plLayer.h"
|
||||
#include "plSurface/hsGMaterial.h"
|
||||
#include "plGImage/plMipmap.h"
|
||||
#include "plMessage/plRenderMsg.h"
|
||||
#include "plMessage/plRenderRequestMsg.h"
|
||||
#include "plScene/plRenderRequest.h"
|
||||
#include "plPipeline.h"
|
||||
#include "../plIntersect/plSoftVolume.h"
|
||||
#include "../plPipeline/plPipeDebugFlags.h"
|
||||
#include "../pnMessage/plPipeResMakeMsg.h"
|
||||
#include "plIntersect/plSoftVolume.h"
|
||||
#include "plPipeline/plPipeDebugFlags.h"
|
||||
#include "pnMessage/plPipeResMakeMsg.h"
|
||||
|
||||
#include "../plScene/plVisRegion.h"
|
||||
#include "../plScene/plVisMgr.h"
|
||||
#include "plScene/plVisRegion.h"
|
||||
#include "plScene/plVisMgr.h"
|
||||
|
||||
// heinous
|
||||
#include "../plNetClient/plNetClientMgr.h"
|
||||
#include "../pnMessage/plEnableMsg.h"
|
||||
#include "plNetClient/plNetClientMgr.h"
|
||||
#include "pnMessage/plEnableMsg.h"
|
||||
static hsScalar kMaxYon = 1000.f;
|
||||
static hsScalar kMinHither = 1.f;
|
||||
|
||||
#include "plLightProxy.h"
|
||||
|
||||
#include "../plDrawable/plDrawableGenerator.h"
|
||||
#include "plDrawable/plDrawableGenerator.h"
|
||||
|
||||
plLightInfo::plLightInfo()
|
||||
: fSceneNode(nil),
|
||||
|
@ -27,10 +27,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plLightInfo_inc
|
||||
#define plLightInfo_inc
|
||||
|
||||
#include "../pnSceneObject/plObjInterface.h"
|
||||
#include "pnSceneObject/plObjInterface.h"
|
||||
#include "hsMatrix44.h"
|
||||
#include "hsColorRGBA.h"
|
||||
#include "../plIntersect/plVolumeIsect.h"
|
||||
#include "plIntersect/plVolumeIsect.h"
|
||||
#include "hsBitVector.h"
|
||||
|
||||
class hsStream;
|
||||
|
@ -27,9 +27,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsTypes.h"
|
||||
#include "plLightProxy.h"
|
||||
#include "plLightInfo.h"
|
||||
#include "../plDrawable/plDrawableSpans.h"
|
||||
#include "../plDrawable/plDrawableGenerator.h"
|
||||
#include "../pnMessage/plProxyDrawMsg.h"
|
||||
#include "plDrawable/plDrawableSpans.h"
|
||||
#include "plDrawable/plDrawableGenerator.h"
|
||||
#include "pnMessage/plProxyDrawMsg.h"
|
||||
|
||||
plLightProxy::plLightProxy()
|
||||
: plProxyGen(hsColorRGBA().Set(0,0,0,1.f), hsColorRGBA().Set(0.5f,1.0,0.5f,1.f), 0.2f),
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plLightProxy_inc
|
||||
#define plLightProxy_inc
|
||||
|
||||
#include "../plDrawable/plProxyGen.h"
|
||||
#include "plDrawable/plProxyGen.h"
|
||||
|
||||
class plLightInfo;
|
||||
|
||||
|
@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plLightSpace.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../plMessage/plLightRefMsg.h"
|
||||
#include "../plMessage/plCollideMsg.h"
|
||||
#include "plMessage/plLightRefMsg.h"
|
||||
#include "plMessage/plCollideMsg.h"
|
||||
#include "plgDispatch.h"
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
class hsStream;
|
||||
class hsResMgr;
|
||||
|
||||
#include "../pnModifier/plMultiModifier.h"
|
||||
#include "pnModifier/plMultiModifier.h"
|
||||
|
||||
class plLightSpace : public plMultiModifier
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plPointShadowMaster.h"
|
||||
#include "plShadowSlave.h"
|
||||
#include "plShadowCaster.h"
|
||||
#include "../plMessage/plShadowCastMsg.h"
|
||||
#include "plMessage/plShadowCastMsg.h"
|
||||
|
||||
#include "plLightInfo.h"
|
||||
|
||||
|
@ -26,18 +26,18 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "plShadowCaster.h"
|
||||
#include "../plMessage/plShadowCastMsg.h"
|
||||
#include "plMessage/plShadowCastMsg.h"
|
||||
|
||||
#include "../pnSceneObject/plSceneObject.h"
|
||||
#include "../pnSceneObject/plDrawInterface.h"
|
||||
#include "pnSceneObject/plSceneObject.h"
|
||||
#include "pnSceneObject/plDrawInterface.h"
|
||||
|
||||
#include "../plDrawable/plDrawableSpans.h"
|
||||
#include "../plDrawable/plSpanTypes.h"
|
||||
#include "plDrawable/plDrawableSpans.h"
|
||||
#include "plDrawable/plSpanTypes.h"
|
||||
|
||||
#include "../plSurface/hsGMaterial.h"
|
||||
#include "../plSurface/plLayerInterface.h"
|
||||
#include "plSurface/hsGMaterial.h"
|
||||
#include "plSurface/plLayerInterface.h"
|
||||
|
||||
#include "../plMessage/plRenderMsg.h"
|
||||
#include "plMessage/plRenderMsg.h"
|
||||
|
||||
#include "plgDispatch.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plShadowCaster_inc
|
||||
#define plShadowCaster_inc
|
||||
|
||||
#include "../pnModifier/plMultiModifier.h"
|
||||
#include "pnModifier/plMultiModifier.h"
|
||||
#include "hsBounds.h"
|
||||
#include "hsTemplates.h"
|
||||
|
||||
|
@ -31,13 +31,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plLightInfo.h"
|
||||
#include "plShadowCaster.h"
|
||||
|
||||
#include "../plIntersect/plVolumeIsect.h"
|
||||
#include "../plMessage/plShadowCastMsg.h"
|
||||
#include "../plMessage/plRenderMsg.h"
|
||||
#include "plIntersect/plVolumeIsect.h"
|
||||
#include "plMessage/plShadowCastMsg.h"
|
||||
#include "plMessage/plRenderMsg.h"
|
||||
|
||||
#include "../plDrawable/plDrawableSpans.h"
|
||||
#include "plDrawable/plDrawableSpans.h"
|
||||
|
||||
#include "../plScene/plVisMgr.h"
|
||||
#include "plScene/plVisMgr.h"
|
||||
|
||||
#include "hsBounds.h"
|
||||
#include "plgDispatch.h"
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plShadowMaster_inc
|
||||
#define plShadowMaster_inc
|
||||
|
||||
#include "../pnSceneObject/plObjInterface.h"
|
||||
#include "pnSceneObject/plObjInterface.h"
|
||||
|
||||
class plShadowCaster;
|
||||
class plShadowSlave;
|
||||
|
Reference in New Issue
Block a user