1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

PubUtilLib -> cmake part II

This commit is contained in:
2011-04-07 20:24:35 -07:00
parent bead11fb28
commit 7f39558b23
42 changed files with 267 additions and 84 deletions

View File

@ -0,0 +1,31 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
set(plIntersect_SOURCES
plClosest.cpp
plHardRegion.cpp
plHardRegionPlanes.cpp
plHardRegionTypes.cpp
plSoftVolume.cpp
plSoftVolumeTypes.cpp
plVolumeIsect.cpp
)
set(plIntersect_HEADERS
plClosest.h
plHardRegion.h
plHardRegionPlanes.h
plHardRegionTypes.h
plIntersectCreatable.h
plRegionBase.h
plSoftVolume.h
plSoftVolumeTypes.h
plVolumeIsect.h
)
add_library(plIntersect STATIC ${plIntersect_SOURCES} ${plIntersect_HEADERS})
source_group("Source Files" FILES ${plIntersect_SOURCES})
source_group("Header Files" FILES ${plIntersect_HEADERS})

View File

@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plHardRegion.h"
#include "plgDispatch.h"
#include "../plMessage/plRenderMsg.h"
#include "plMessage/plRenderMsg.h"
#include "plPipeline.h"
plHardRegion::plHardRegion()

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plIntersectCreatable_inc
#define plIntersectCreatable_inc
#include "../pnFactory/plCreator.h"
#include "pnFactory/plCreator.h"
#include "plVolumeIsect.h"

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plRegionBase_inc
#define plRegionBase_inc
#include "../pnSceneObject/plObjInterface.h"
#include "pnSceneObject/plObjInterface.h"
struct hsPoint3;

View File

@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plSoftVolume.h"
#include "plgDispatch.h"
#include "../plMessage/plListenerMsg.h"
#include "plMessage/plListenerMsg.h"
plSoftVolume::plSoftVolume()
: fListenState(0),

View File

@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsFastMath.h"
#include "hsStream.h"
#include "hsResMgr.h"
#include "../plIntersect/plClosest.h"
#include "plIntersect/plClosest.h"
static const hsScalar kDefLength = 5.f;

View File

@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTemplates.h"
#include "hsBounds.h"
#include "../pnFactory/plCreatable.h"
#include "pnFactory/plCreatable.h"
class hsBounds3Ext;