1
0
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:
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(plInterp_SOURCES
hsInterp.cpp
hsKeys.cpp
plAnimPath.cpp
plAnimTimeConvert.cpp
plATCEaseCurves.cpp
plController.cpp
plModulator.cpp
)
set(plInterp_HEADERS
hsInterp.h
hsKeys.h
hsTimedValue.h
plAnimEaseTypes.h
plAnimPath.h
plAnimTimeConvert.h
plController.h
plInterpCreatable.h
plModulator.h
)
add_library(plInterp STATIC ${plInterp_SOURCES} ${plInterp_HEADERS})
source_group("Source Files" FILES ${plInterp_SOURCES})
source_group("Header Files" FILES ${plInterp_HEADERS})

View File

@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "hsTypes.h"
#include "hsInterp.h"
#include "../plTransform/hsAffineParts.h"
#include "plTransform/hsAffineParts.h"
#include "hsColorRGBA.h"
#include "hsPoint2.h"

View File

@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "HeadSpin.h"
#include "hsGeometry3.h"
#include "hsQuat.h"
#include "../plTransform/hsAffineParts.h"
#include "plTransform/hsAffineParts.h"
#include "hsMatrix33.h"
#include "hsMatrix44.h"

View File

@ -30,8 +30,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTemplates.h"
#include "hsGeometry3.h"
#include "hsMatrix44.h"
#include "../plTransform/hsAffineParts.h"
#include "../pnFactory/plCreatable.h"
#include "plTransform/hsAffineParts.h"
#include "pnFactory/plCreatable.h"
class plCompoundController;

View File

@ -26,17 +26,17 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plAnimEaseTypes.h"
#include "plAnimTimeConvert.h"
#include "../plAvatar/plAGAnim.h"
#include "plAvatar/plAGAnim.h"
#include "hsTimer.h"
#include "hsStream.h"
#include "../pnMessage/plEventCallbackMsg.h"
#include "../plMessage/plAnimCmdMsg.h"
#include "../plAvatar/plAGMasterSDLModifier.h"
#include "../plAvatar/plAGMasterMod.h"
#include "../plModifier/plLayerSDLModifier.h"
#include "../plSurface/plLayerAnimation.h"
#include "pnMessage/plEventCallbackMsg.h"
#include "plMessage/plAnimCmdMsg.h"
#include "plAvatar/plAGMasterSDLModifier.h"
#include "plAvatar/plAGMasterMod.h"
#include "plModifier/plLayerSDLModifier.h"
#include "plSurface/plLayerAnimation.h"
#include "hsResMgr.h"
#include "plgDispatch.h"

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plAnimTimeConvert_inc
#define plAnimTimeConvert_inc
#include "../pnFactory/plCreatable.h"
#include "pnFactory/plCreatable.h"
#include "hsTemplates.h"
#include "../pnNetCommon/plSynchedValue.h"
#include "pnNetCommon/plSynchedValue.h"
#pragma warning (disable: 4284)

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsInterp.h"
#include "hsResMgr.h"
#include "../plTransform/hsEuler.h"
#include "plTransform/hsEuler.h"
#include "plAnimTimeConvert.h"
/////////////////////////////////////////////

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define HSCONTROLLER_inc
#include "HeadSpin.h"
#include "../pnFactory/plCreatable.h"
#include "pnFactory/plCreatable.h"
#include "hsColorRGBA.h"
#include "hsKeys.h"
#include "hsTemplates.h"

View File

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

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plController.h"
#include "../plIntersect/plVolumeIsect.h"
#include "plIntersect/plVolumeIsect.h"
plModulator::plModulator()
: fVolume(nil),

View File

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