Browse Source
--HG-- rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plNetCommon/plNetResManager.cpp => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetCommon/plNetResManager.cpp rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plNetCommon/plNetResManager.h => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetCommon/plNetResManager.h
Michael Hansen
14 years ago
82 changed files with 723 additions and 146 deletions
@ -1,11 +1,34 @@
|
||||
add_definitions(-D_LIB) |
||||
|
||||
add_subdirectory(inc) |
||||
add_subdirectory(pnAddrInfo) |
||||
add_subdirectory(pnAsyncCore) |
||||
add_subdirectory(pnAsyncCoreExe) |
||||
add_subdirectory(pnCrash) |
||||
add_subdirectory(pnCrashExe) |
||||
add_subdirectory(pnCsrCli) |
||||
#add_subdirectory(pnCrash) # Not being used in any current sln |
||||
#add_subdirectory(pnCrashExe) # Not being used in any current sln |
||||
#add_subdirectory(pnCsrCli) # Not being used in any current sln |
||||
add_subdirectory(pnCsrNet) |
||||
add_subdirectory(pnDispatch) |
||||
add_subdirectory(pnFactory) |
||||
add_subdirectory(pnGameMgr) |
||||
add_subdirectory(pnIni) |
||||
add_subdirectory(pnIniExe) |
||||
add_subdirectory(pnInputCore) |
||||
add_subdirectory(pnKeyedObject) |
||||
add_subdirectory(pnMail) |
||||
add_subdirectory(pnMessage) |
||||
add_subdirectory(pnModifier) |
||||
add_subdirectory(pnNetBase) |
||||
add_subdirectory(pnNetCli) |
||||
add_subdirectory(pnNetCommon) |
||||
add_subdirectory(pnNetDiag) |
||||
#add_subdirectory(pnNetLog) # Not being used in any current sln |
||||
add_subdirectory(pnNetProtocol) |
||||
#add_subdirectory(pnOraLib) # Not being used in any current sln |
||||
add_subdirectory(pnProduct) |
||||
add_subdirectory(pnSceneObject) |
||||
add_subdirectory(pnSimpleNet) |
||||
#add_subdirectory(pnSqlLib) # Not being used in any current sln |
||||
#add_subdirectory(pnTimer) |
||||
#add_subdirectory(pnUtils) |
||||
#add_subdirectory(pnUtilsExe) |
||||
|
@ -0,0 +1,34 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnNucleusInc_HEADERS |
||||
hsGMatState.h |
||||
hsGMatState.inl |
||||
hsResMgr.h |
||||
hsTimer.h |
||||
plAudible.h |
||||
plCCRMgrBase.h |
||||
plClassIndexMacros.h |
||||
plCreatableIndex.h |
||||
plCreatableStrings.h |
||||
plDrawable.h |
||||
plgDispatch.h |
||||
plPhysical.h |
||||
plPipeline.h |
||||
plPipeResReq.h |
||||
plProfile.h |
||||
plProfileManager.h |
||||
plRefFlags.h |
||||
pnAllCreatables.h |
||||
pnNucleusCreatables.h |
||||
) |
||||
|
||||
set(pnNucleusInc_SOURCES |
||||
plProfileManager.cpp |
||||
pnSingletons.cpp |
||||
) |
||||
|
||||
add_library(pnNucleusInc STATIC ${pnNucleusInc_HEADERS} ${pnNucleusInc_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnNucleusInc_HEADERS}) |
||||
source_group("Source Files" FILES ${pnNucleusInc_SOURCES}) |
@ -0,0 +1,53 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
|
||||
set(pnGameMgr_BLUESPIRAL |
||||
BlueSpiral/pnGmBlueSpiral.h |
||||
BlueSpiral/pnGmBlueSpiral.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_CLIMBINGWALL |
||||
ClimbingWall/pnGmClimbingWall.h |
||||
ClimbingWall/pnGmClimbingWall.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_HEEK |
||||
Heek/pnGmHeek.h |
||||
Heek/pnGmHeek.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_MARKER |
||||
Marker/pnGmMarker.h |
||||
Marker/pnGmMarker.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_TICTACTOE |
||||
TicTacToe/pnGmTicTacToe.h |
||||
TicTacToe/pnGmTicTacToe.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_VARSYNC |
||||
VarSync/pnGmVarSync.h |
||||
VarSync/pnGmVarSync.cpp |
||||
) |
||||
|
||||
set(pnGameMgr_SOURCES |
||||
Intern.h |
||||
Pch.h |
||||
pnGameMgr.h |
||||
pnGameMgr.cpp |
||||
) |
||||
|
||||
add_library(pnGameMgr STATIC ${pnGameMgr_SOURCES} ${pnGameMgr_BLUESPIRAL} |
||||
${pnGameMgr_CLIMBINGWALL} ${pnGameMgr_HEEK} |
||||
${pnGameMgr_MARKER} ${pnGameMgr_TICTACTOE} |
||||
${pnGameMgr_VARSYNC}) |
||||
|
||||
source_group("BlueSpiral" FILES ${pnGameMgr_BLUESPIRAL}) |
||||
source_group("ClimbingWall" FILES ${pnGameMgr_CLIMBINGWALL}) |
||||
source_group("Heek" FILES ${pnGameMgr_HEEK}) |
||||
source_group("Marker" FILES ${pnGameMgr_MARKER}) |
||||
source_group("TicTacToe" FILES ${pnGameMgr_TICTACTOE}) |
||||
source_group("VarSync" FILES ${pnGameMgr_VARSYNC}) |
||||
source_group("" FILES ${pnGameMgr_SOURCES}) |
@ -0,0 +1,21 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnIni_HEADERS |
||||
Intern.h |
||||
Pch.h |
||||
pnIni.h |
||||
) |
||||
|
||||
set(pnIni_PRIVATE |
||||
Private/pnIniAllIncludes.h |
||||
Private/pnIniChange.h |
||||
Private/pnIniCore.h |
||||
Private/pnIniCore.cpp |
||||
Private/pnIniSrv.h |
||||
) |
||||
|
||||
add_library(pnIni STATIC ${pnIni_HEADERS} ${pnIni_PRIVATE}) |
||||
|
||||
source_group("Header Files" FILES ${pnIni_HEADERS}) |
||||
source_group("Private" FILES ${pnIni_PRIVATE}) |
@ -0,0 +1,20 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnIniExe_HEADERS |
||||
Pch.h |
||||
) |
||||
|
||||
set(pnIniExe_PRIVATE |
||||
Private/pnIniSrv.cpp |
||||
) |
||||
|
||||
set(pnIniExe_PRIVATE_WIN32 |
||||
Private/Win32/pnW32IniChange.cpp |
||||
) |
||||
|
||||
add_library(pnIniExe STATIC ${pnIniExe_HEADERS} ${pnIniExe_PRIVATE} ${pnIniExe_PRIVATE_WIN32}) |
||||
|
||||
source_group("Header Files" FILES ${pnIniExe_HEADERS}) |
||||
source_group("Private" FILES ${pnIniExe_PRIVATE}) |
||||
source_group("Private\\Win32" FILES ${pnIniExe_PRIVATE_WIN32}) |
@ -0,0 +1,21 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(pnInputCore_HEADERS |
||||
plControlDefinition.h |
||||
plControlEventCodes.h |
||||
plInputMap.h |
||||
plKeyDef.h |
||||
plKeyMap.h |
||||
plOSMsg.h |
||||
) |
||||
|
||||
set(pnInputCore_SOURCES |
||||
plInputMap.cpp |
||||
) |
||||
|
||||
add_library(pnInputCore STATIC ${pnInputCore_HEADERS} ${pnInputCore_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnInputCore_HEADERS}) |
||||
source_group("Source Files" FILES ${pnInputCore_SOURCES}) |
@ -0,0 +1,28 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
|
||||
set(pnKeyedObject_HEADERS |
||||
hsKeyedObject.h |
||||
plFixedKey.h |
||||
plKey.h |
||||
plKeyImp.h |
||||
plMsgForwarder.h |
||||
plReceiver.h |
||||
plUoid.h |
||||
pnKeyedObjectCreatable.h |
||||
) |
||||
|
||||
set(pnKeyedObject_SOURCES |
||||
hsKeyedObject.cpp |
||||
plFixedKey.cpp |
||||
plKey.cpp |
||||
plKeyImp.cpp |
||||
plMsgForwarder.cpp |
||||
plUoid.cpp |
||||
) |
||||
|
||||
add_library(pnKeyedObject STATIC ${pnKeyedObject_HEADERS} ${pnKeyedObject_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnKeyedObject_HEADERS}) |
||||
source_group("Source Files" FILES ${pnKeyedObject_SOURCES}) |
@ -0,0 +1,16 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnMail_HEADERS |
||||
Pch.h |
||||
pnMail.h |
||||
) |
||||
|
||||
set(pnMail_SOURCES |
||||
pnMail.cpp |
||||
) |
||||
|
||||
add_library(pnMail STATIC ${pnMail_HEADERS} ${pnMail_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnMail_HEADERS}) |
||||
source_group("Source Files" FILES ${pnMail_SOURCES}) |
@ -0,0 +1,64 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(pnMessage_HEADERS |
||||
plAttachMsg.h |
||||
plAudioSysMsg.h |
||||
plCameraMsg.h |
||||
plClientMsg.h |
||||
plCorrectionMsg.h |
||||
plCursorChangeMsg.h |
||||
plEnableMsg.h |
||||
plEventCallbackMsg.h |
||||
plFakeOutMsg.h |
||||
plIntRefMsg.h |
||||
plMessage.h |
||||
plMessageWithCallbacks.h |
||||
plMultiModMsg.h |
||||
plNodeChangeMsg.h |
||||
plNodeRefMsg.h |
||||
plNotifyMsg.h |
||||
plObjRefMsg.h |
||||
plPipeResMakeMsg.h |
||||
plPlayerPageMsg.h |
||||
plProxyDrawMsg.h |
||||
plRefMsg.h |
||||
plRemoteAvatarInfoMsg.h |
||||
plSatisfiedMsg.h |
||||
plSDLModifierMsg.h |
||||
plSDLNotificationMsg.h |
||||
plSelfDestructMsg.h |
||||
plServerReplyMsg.h |
||||
plSetNetGroupIDMsg.h |
||||
plSharedStateMsg.h |
||||
plSimulationMsg.h |
||||
plSimulationSynchMsg.h |
||||
plSingleModMsg.h |
||||
plSoundMsg.h |
||||
plTimeMsg.h |
||||
plWarpMsg.h |
||||
pnMessageCreatable.h |
||||
) |
||||
|
||||
set(pnMessage_SOURCES |
||||
plCameraMsg.cpp |
||||
plClientMsg.cpp |
||||
plMessage.cpp |
||||
plMessageWithCallbacks.cpp |
||||
plNodeChangeMsg.cpp |
||||
plNotifyMsg.cpp |
||||
plProxyDrawMsg.cpp |
||||
plRefMsg.cpp |
||||
plSDLModifierMsg.cpp |
||||
plServerReplyMsg.cpp |
||||
plSimulationMsg.cpp |
||||
plSoundMsg.cpp |
||||
plTimeMsg.cpp |
||||
) |
||||
|
||||
add_library(pnMessage STATIC ${pnMessage_HEADERS} ${pnMessage_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnMessage_HEADERS}) |
||||
source_group("Source Files" FILES ${pnMessage_SOURCES}) |
@ -0,0 +1,26 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(pnModifier_HEADERS |
||||
plConditionalObject.h |
||||
plLogicModBase.h |
||||
plModifier.h |
||||
plMultiModifier.h |
||||
plSingleModifier.h |
||||
pnModifierCreatable.h |
||||
) |
||||
|
||||
set(pnModifier_SOURCES |
||||
plConditionalObject.cpp |
||||
plLogicModBase.cpp |
||||
plModifier.cpp |
||||
plMultiModifier.cpp |
||||
plSingleModifier.cpp |
||||
) |
||||
|
||||
add_library(pnModifier STATIC ${pnModifier_HEADERS} ${pnModifier_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnModifier_HEADERS}) |
||||
source_group("Source Files" FILES ${pnModifier_SOURCES}) |
@ -0,0 +1,29 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnNetBase_HEADERS |
||||
Intern.h |
||||
Pch.h |
||||
pnNbAuthKey.hpp |
||||
pnNbCsrKey.hpp |
||||
pnNbConst.h |
||||
pnNbGameKey.hpp |
||||
pnNbGateKeeperKey.hpp |
||||
pnNetBase.h |
||||
) |
||||
|
||||
set(pnNetBase_PRIVATE |
||||
Private/pnNbAllIncludes.h |
||||
Private/pnNbEchoMsgs.h |
||||
Private/pnNbError.h |
||||
Private/pnNbError.cpp |
||||
Private/pnNbProtocol.h |
||||
Private/pnNbProtocol.cpp |
||||
Private/pnNbSrvs.h |
||||
Private/pnNbSrvs.cpp |
||||
) |
||||
|
||||
add_library(pnNetBase STATIC ${pnNetBase_HEADERS} ${pnNetBase_PRIVATE}) |
||||
|
||||
source_group("Header Files" FILES ${pnNetBase_HEADERS}) |
||||
source_group("Private" FILES ${pnNetBase_PRIVATE}) |
@ -0,0 +1,20 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnNetCli_HEADERS |
||||
Intern.h |
||||
Pch.h |
||||
pnNetCli.h |
||||
) |
||||
|
||||
set(pnNetCli_SOURCES |
||||
pnNcChannel.cpp |
||||
pnNcCli.cpp |
||||
pnNcEncrypt.cpp |
||||
pnNcUtils.cpp |
||||
) |
||||
|
||||
add_library(pnNetCli STATIC ${pnNetCli_HEADERS} ${pnNetCli_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnNetCli_HEADERS}) |
||||
source_group("Source Files" FILES ${pnNetCli_SOURCES}) |
@ -0,0 +1,35 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(pnNetCommon_HEADERS |
||||
plGenericVar.h |
||||
plNetAddress.h |
||||
plNetApp.h |
||||
plNetGroup.h |
||||
plNetResManager.h |
||||
plNetServers.h |
||||
plNetSharedState.h |
||||
plSDLTypes.h |
||||
plSynchedObject.h |
||||
plSynchedValue.h |
||||
) |
||||
|
||||
set(pnNetCommon_SOURCES |
||||
plGenericVar.cpp |
||||
plNetAddress.cpp |
||||
plNetApp.cpp |
||||
plNetGroup.cpp |
||||
plNetResManager.cpp |
||||
plNetServers.cpp |
||||
plNetSharedState.cpp |
||||
plSDLTypes.cpp |
||||
plSynchedObject.cpp |
||||
plSynchedValue.cpp |
||||
) |
||||
|
||||
add_library(pnNetCommon STATIC ${pnNetCommon_HEADERS} ${pnNetCommon_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnNetCommon_HEADERS}) |
||||
source_group("Source Files" FILES ${pnNetCommon_SOURCES}) |
@ -0,0 +1,21 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnNetDiag_HEADERS |
||||
Intern.h |
||||
Pch.h |
||||
pnNetDiag.h |
||||
) |
||||
|
||||
set(pnNetDiag_SOURCES |
||||
pnNdDns.cpp |
||||
pnNdIcmp.cpp |
||||
pnNdTcp.cpp |
||||
pnNetDiag.cpp |
||||
pnNetSys.cpp |
||||
) |
||||
|
||||
add_library(pnNetDiag STATIC ${pnNetDiag_HEADERS} ${pnNetDiag_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnNetDiag_HEADERS}) |
||||
source_group("Source Files" FILES ${pnNetDiag_SOURCES}) |
@ -0,0 +1,96 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
if(PLASMA_TARGETS STREQUAL "Server") |
||||
include_directories("../../ServerLib") |
||||
endif(PLASMA_TARGETS STREQUAL "Server") |
||||
|
||||
set(pnNetProtocol_HEADERS |
||||
Intern.h |
||||
Pch.h |
||||
pnNetProtocol.h |
||||
) |
||||
|
||||
set(pnNetProtocol_PRIVATE |
||||
Private/pnNpAllIncludes.h |
||||
Private/pnNpCommon.h |
||||
Private/pnNpCommon.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_CLI2AUTH |
||||
Private/Protocols/CLi2Auth/pnNpCli2Auth.h |
||||
Private/Protocols/CLi2Auth/pnNpCli2Auth.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_CLI2CSR |
||||
Private/Protocols/CLi2Csr/pnNpCli2Csr.h |
||||
Private/Protocols/CLi2Csr/pnNpCli2Csr.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_CLI2FILE |
||||
Private/Protocols/CLi2File/pnNpCli2File.h |
||||
Private/Protocols/CLi2File/pnNpCli2File.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_CLI2GAME |
||||
Private/Protocols/CLi2Game/pnNpCli2Game.h |
||||
Private/Protocols/CLi2Game/pnNpCli2Game.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_CLI2GK |
||||
Private/Protocols/CLi2GateKeeper/pnNpCli2GateKeeper.h |
||||
Private/Protocols/CLi2GateKeeper/pnNpCli2GateKeeper.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2DB |
||||
Private/Protocols/Srv2Db/pnNpSrv2Db.h |
||||
Private/Protocols/Srv2Db/pnNpSrv2Db.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2LOG |
||||
Private/Protocols/Srv2Log/pnNpSrv2Log.h |
||||
Private/Protocols/Srv2Log/pnNpSrv2Log.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2MCP |
||||
Private/Protocols/Srv2Mcp/pnNpSrv2Mcp.h |
||||
Private/Protocols/Srv2Mcp/pnNpSrv2Mcp.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2SCORE |
||||
Private/Protocols/Srv2Score/pnNpSrv2Score.h |
||||
Private/Protocols/Srv2Score/pnNpSrv2Score.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2STATE |
||||
Private/Protocols/Srv2State/pnNpSrv2State.h |
||||
Private/Protocols/Srv2State/pnNpSrv2State.cpp |
||||
) |
||||
|
||||
set(pnNetProtocol_PROTO_SRV2VAULT |
||||
Private/Protocols/Srv2Vault/pnNpSrv2Vault.h |
||||
Private/Protocols/Srv2Vault/pnNpSrv2Vault.cpp |
||||
) |
||||
|
||||
add_library(pnNetProtocol STATIC ${pnNetProtocol_HEADERS} ${pnNetProtocol_PRIVATE} |
||||
${pnNetProtocol_PROTO_CLI2AUTH} ${pnNetProtocol_PROTO_CLI2CSR} |
||||
${pnNetProtocol_PROTO_CLI2FILE} ${pnNetProtocol_PROTO_CLI2GAME} |
||||
${pnNetProtocol_PROTO_CLI2GK} ${pnNetProtocol_PROTO_SRV2DB} |
||||
${pnNetProtocol_PROTO_SRV2LOG} ${pnNetProtocol_PROTO_SRV2MCP} |
||||
${pnNetProtocol_PROTO_SRV2SCORE} ${pnNetProtocol_PROTO_SRV2STATE} |
||||
${pnNetProtocol_PROTO_SRV2VAULT} |
||||
) |
||||
|
||||
source_group("Header Files" FILES ${pnNetProtocol_HEADERS}) |
||||
source_group("Private" FILES ${pnNetProtocol_PRIVATE}) |
||||
source_group("Private\\Cli2Auth" FILES ${pnNetProtocol_PROTO_CLI2AUTH}) |
||||
source_group("Private\\Cli2Csr" FILES ${pnNetProtocol_PROTO_CLI2CSR}) |
||||
source_group("Private\\Cli2File" FILES ${pnNetProtocol_PROTO_CLI2FILE}) |
||||
source_group("Private\\Cli2Game" FILES ${pnNetProtocol_PROTO_CLI2GAME}) |
||||
source_group("Private\\Cli2GateKeeper" FILES ${pnNetProtocol_PROTO_CLI2GK}) |
||||
source_group("Private\\Srv2Db" FILES ${pnNetProtocol_PROTO_SRV2DB}) |
||||
source_group("Private\\Srv2Log" FILES ${pnNetProtocol_PROTO_SRV2LOG}) |
||||
source_group("Private\\Srv2Mcp" FILES ${pnNetProtocol_PROTO_SRV2MCP}) |
||||
source_group("Private\\Srv2Score" FILES ${pnNetProtocol_PROTO_SRV2SCORE}) |
||||
source_group("Private\\Srv2State" FILES ${pnNetProtocol_PROTO_SRV2STATE}) |
||||
source_group("Private\\Srv2Vault" FILES ${pnNetProtocol_PROTO_SRV2VAULT}) |
@ -0,0 +1,26 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnProduct_HEADERS |
||||
Pch.h |
||||
pnProduct.h |
||||
) |
||||
|
||||
set(pnProduct_PRIVATE |
||||
Private/pnPrAllIncludes.h |
||||
Private/pnPrBranchId.h |
||||
Private/pnPrBranchId.cpp |
||||
Private/pnPrBuildId.h |
||||
Private/pnPrBuildId.cpp |
||||
Private/pnPrBuildString.h |
||||
Private/pnPrBuildString.cpp |
||||
Private/pnPrBuildType.h |
||||
Private/pnPrBuildType.cpp |
||||
Private/pnPrProductId.h |
||||
Private/pnPrProductId.cpp |
||||
) |
||||
|
||||
add_library(pnProduct STATIC ${pnProduct_HEADERS} ${pnProduct_PRIVATE}) |
||||
|
||||
source_group("Header Files" FILES ${pnProduct_HEADERS}) |
||||
source_group("Private" FILES ${pnProduct_PRIVATE}) |
@ -0,0 +1,27 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
|
||||
set(pnSceneObject_HEADERS |
||||
plAudioInterface.h |
||||
plCoordinateInterface.h |
||||
plDrawInterface.h |
||||
plObjInterface.h |
||||
plSceneObject.h |
||||
plSimulationInterface.h |
||||
pnSceneObjectCreatable.h |
||||
) |
||||
|
||||
set(pnSceneObject_SOURCES |
||||
plAudioInterface.cpp |
||||
plCoordinateInterface.cpp |
||||
plDrawInterface.cpp |
||||
plObjInterface.cpp |
||||
plSceneObject.cpp |
||||
plSimulationInterface.cpp |
||||
) |
||||
|
||||
add_library(pnSceneObject STATIC ${pnSceneObject_HEADERS} ${pnSceneObject_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnSceneObject_HEADERS}) |
||||
source_group("Source Files" FILES ${pnSceneObject_SOURCES}) |
@ -0,0 +1,16 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
|
||||
set(pnSimpleNet_HEADERS |
||||
Pch.h |
||||
pnSimpleNet.h |
||||
) |
||||
|
||||
set(pnSimpleNet_SOURCES |
||||
pnSimpleNet.cpp |
||||
) |
||||
|
||||
add_library(pnSimpleNet STATIC ${pnSimpleNet_HEADERS} ${pnSimpleNet_SOURCES}) |
||||
|
||||
source_group("Header Files" FILES ${pnSimpleNet_HEADERS}) |
||||
source_group("Source Files" FILES ${pnSimpleNet_SOURCES}) |
Loading…
Reference in new issue