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

Finish the port of FeatureLib to CMake

This commit is contained in:
Branan Purvine-Riley
2011-04-08 00:42:40 -07:00
parent ff1320388e
commit 4134a68f2c
281 changed files with 2011 additions and 1166 deletions

View File

@ -0,0 +1,28 @@
include_directories(../../CoreLib)
include_directories(../../NucleusLib)
include_directories(../../NucleusLib/inc)
include_directories(../../PubUtilLib)
set(pfMessage_SOURCES
pfKIMsg.cpp
pfMarkerMsg.cpp
pfMovieEventMsg.cpp
plArmatureEffectMsg.cpp
plClothingMsg.cpp
)
set(pfMessage_HEADERS
pfBackdoorMsg.h
pfGameGUIMsg.h
pfKIMsg.h
pfMarkerMsg.h
pfMessageCreatable.h
pfMovieEventMsg.h
plArmatureEffectMsg.h
plClothingMsg.h
)
add_library(pfMessage STATIC ${pfMessage_SOURCES} ${pfMessage_HEADERS})
source_group("Source Files" FILES ${pfMessage_SOURCES})
source_group("Header Files" FILES ${pfMessage_HEADERS})

View File

@ -34,7 +34,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStream.h"
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class pfBackdoorMsg : public plMessage
{

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef _pfGUINotifyMsg_h_
#define _pfGUINotifyMsg_h_
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
#include "hsResMgr.h"
#include "../pnModifier/plSingleModifier.h"
#include "pnModifier/plSingleModifier.h"
#include "hsUtils.h"

View File

@ -34,7 +34,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStream.h"
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class pfGameGUIMsg : public plMessage
{

View File

@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// //
//////////////////////////////////////////////////////////////////////////////
#include "../pfMessage/pfKIMsg.h"
#include "pfKIMsg.h"
const char* pfKIMsg::kChronicleKILevel = "PlayerKILevel";
@ -47,4 +47,4 @@ std::string pfKIMsg::GetString( void )
std::string retVal = temp;
delete [] temp;
return retVal;
}
}

View File

@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "hsStlUtils.h"
#include "hsStream.h"
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef pfMarkerMsg_h_inc
#define pfMarkerMsg_h_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
struct hsPoint3;
class pfMarkerMsg : public plMessage

View File

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

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef pfMovieEventMsg_h_inc
#define pfMovieEventMsg_h_inc
#include "../pnMessage/plMessage.h"
#include "pnMessage/plMessage.h"
class pfMovieEventMsg : public plMessage
{

View File

@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "hsStream.h"
#include "plArmatureEffectMsg.h"
#include "../plAvatar/plArmatureEffects.h"
#include "plAvatar/plArmatureEffects.h"
plArmatureEffectStateMsg::plArmatureEffectStateMsg() :
fSurface(plArmatureEffectsMgr::kFootNoSurface), fAddSurface(false) {}

View File

@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plArmatureEffectMsg_inc
#define plArmatureEffectMsg_inc
#include "../pnMessage/plEventCallbackMsg.h"
#include "pnMessage/plEventCallbackMsg.h"
class plArmatureEffectMsg : public plEventCallbackMsg
{
@ -62,4 +62,4 @@ public:
};
#endif
#endif

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plClothingMsg_inc
#define plClothingMsg_inc
#include "../pnMessage/plRefMsg.h"
#include "pnMessage/plRefMsg.h"
#include "hsStream.h"
#include "../CoreLib/hsColorRGBA.h"
#include "hsColorRGBA.h"
class hsResMgr;