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:
@ -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})
|
@ -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()
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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),
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user