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,35 @@
include_directories(../../CoreLib)
include_directories(../../FeatureLib)
include_directories(../../NucleusLib)
include_directories(../../NucleusLib/inc)
include_directories(../../PubUtilLib)
include_directories(${OPENSSL_INCLUDE_DIR})
set(pfGameMgr_SOURCES
pfGameMgr.cpp
BlueSpiral/pfGmBlueSpiral.cpp
ClimbingWall/pfGmClimbingWall.cpp
Heek/pfGmHeek.cpp
Marker/pfGmMarker.cpp
TicTacToe/pfGmTicTacToe.cpp
VarSync/pfGmVarSync.cpp
)
set(pfGameMgr_HEADERS
Intern.h
Pch.h
pfGameMgr.h
pfGameMgrCreatables.h
BlueSpiral/pfGmBlueSpiral.h
ClimbingWall/pfGmClimbingWall.h
Heek/pfGmHeek.h
Marker/pfGmMarker.h
TicTacToe/pfGmTicTacToe.h
VarSync/pfGmVarSync.cpp
)
add_library(pfGameMgr ${pfGameMgr_SOURCES} ${pfGameMgr_HEADERS})
source_group("Source Files" FILES ${pfGameMgr_SOURCES})
source_group("Header Files" FILES ${pfGameMgr_HEADERS})

View File

@ -35,20 +35,20 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define PLASMA20_SOURCES_PLASMA_FEATURELIB_PFGAMEMGR_PCH_H
#include "../pnUtils/pnUtils.h"
#include "../pnNetBase/pnNetBase.h"
#include "../pnAsyncCore/pnAsyncCore.h"
#include "../pnNetCli/pnNetCli.h"
#include "../pnProduct/pnProduct.h"
#include "../pnGameMgr/pnGameMgr.h"
#include "../plNetGameLib/plNetGameLib.h"
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "pnAsyncCore/pnAsyncCore.h"
#include "pnNetCli/pnNetCli.h"
#include "pnProduct/pnProduct.h"
#include "pnGameMgr/pnGameMgr.h"
#include "plNetGameLib/plNetGameLib.h"
#pragma warning(push, 0)
// These includes produce lots of warnings on W4
#include "../pnMessage/plMessage.h"
#include "../pnKeyedObject/hsKeyedObject.h"
#include "../plNetClient/plNetClientMgr.h"
#include "../pfConsole/pfConsole.h"
#include "pnMessage/plMessage.h"
#include "pnKeyedObject/hsKeyedObject.h"
#include "plNetClient/plNetClientMgr.h"
#include "pfConsole/pfConsole.h"
#pragma warning(pop)
#include "pfGameMgr.h"

View File

@ -33,17 +33,17 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define PLASMA20_SOURCES_PLASMA_FEATURELIB_PFGAMEMGR_PFGAMEMGR_H
#include "../pnUtils/pnUtils.h"
#include "../pnNetBase/pnNetBase.h"
#include "../pnAsyncCore/pnAsyncCore.h"
#include "../pnNetCli/pnNetCli.h"
#include "../pnProduct/pnProduct.h"
#include "../plNetGameLib/plNetGameLib.h"
#include "pnUtils/pnUtils.h"
#include "pnNetBase/pnNetBase.h"
#include "pnAsyncCore/pnAsyncCore.h"
#include "pnNetCli/pnNetCli.h"
#include "pnProduct/pnProduct.h"
#include "plNetGameLib/plNetGameLib.h"
#pragma warning(push, 0)
// These includes produce lots of warnings on W4
#include "../pnMessage/plMessage.h"
#include "../pnKeyedObject/hsKeyedObject.h"
#include "pnMessage/plMessage.h"
#include "pnKeyedObject/hsKeyedObject.h"
#pragma warning(pop)