104 changed files with 480 additions and 219 deletions
@ -1,23 +1,54 @@
|
||||
add_definitions(-D_LIB) |
||||
|
||||
add_subdirectory(plAgeDescription) |
||||
add_subdirectory(plAgeLoader) |
||||
add_subdirectory(plAudible) |
||||
#add_subdirectory(plAudio) # TODO: DirectX |
||||
#add_subdirectory(plAudioCore) # TODO: DirectX |
||||
add_subdirectory(plAvatar) |
||||
add_subdirectory(plCompression) |
||||
add_subdirectory(plContainer) |
||||
#add_subdirectory(plDeviceSelector) # Not being used by any current slns |
||||
add_subdirectory(plDrawable) |
||||
add_subdirectory(plEncryption) |
||||
add_subdirectory(plFile) |
||||
#add_subdirectory(plGClip) # Not being used by any current slns |
||||
#add_subdirectory(plGeometry) # Not being used by any current slns |
||||
#add_subdirectory(plGImage) |
||||
add_subdirectory(plGLight) |
||||
#add_subdirectory(plGRenderProcs) # Not being used by any current slns |
||||
#add_subdirectory(plInputCore) # TODO: DirectX |
||||
add_subdirectory(plInterp) |
||||
add_subdirectory(plIntersect) |
||||
add_subdirectory(plJPEG) |
||||
add_definitions(-D_LIB) |
||||
|
||||
add_subdirectory(plAgeDescription) |
||||
add_subdirectory(plAgeLoader) |
||||
add_subdirectory(plAudible) |
||||
#add_subdirectory(plAudio) # TODO: DirectX |
||||
#add_subdirectory(plAudioCore) # TODO: DirectX |
||||
add_subdirectory(plAvatar) |
||||
add_subdirectory(plCompression) |
||||
add_subdirectory(plContainer) |
||||
#add_subdirectory(plDeviceSelector) # Not being used by any current slns |
||||
add_subdirectory(plDrawable) |
||||
add_subdirectory(plEncryption) |
||||
add_subdirectory(plFile) |
||||
#add_subdirectory(plGClip) # Not being used by any current slns |
||||
#add_subdirectory(plGeometry) # Not being used by any current slns |
||||
#add_subdirectory(plGImage) |
||||
add_subdirectory(plGLight) |
||||
#add_subdirectory(plGRenderProcs) # Not being used by any current slns |
||||
#add_subdirectory(plInputCore) # TODO: DirectX |
||||
add_subdirectory(plInterp) |
||||
add_subdirectory(plIntersect) |
||||
add_subdirectory(plJPEG) |
||||
add_subdirectory(plMath) |
||||
add_subdirectory(plMessage) |
||||
#add_subdirectory(plModifier) # TODO: PhysX |
||||
#add_subdirectory(plNetClient) # TODO: STLport |
||||
add_subdirectory(plNetClientComm) |
||||
add_subdirectory(plNetClientRecorder) |
||||
#add_subdirectory(plNetCommon) # TODO: STLport |
||||
add_subdirectory(plNetGameLib) |
||||
#add_subdirectory(plNetMessage) |
||||
#add_subdirectory(plNetTransport) |
||||
#add_subdirectory(plParticleSystem) |
||||
#add_subdirectory(plPhysical) |
||||
#add_subdirectory(plPhysX) |
||||
#add_subdirectory(plPipeline) |
||||
#add_subdirectory(plProgressMgr) |
||||
#add_subdirectory(plResMgr) |
||||
#add_subdirectory(plScene) |
||||
#add_subdirectory(plSDL) |
||||
#add_subdirectory(plSDLBrowser) # Not being used by any current slns |
||||
#add_subdirectory(plSockets) |
||||
#add_subdirectory(plStatGather) |
||||
#add_subdirectory(plStatusLog) |
||||
#add_subdirectory(plStreamLogger) |
||||
#add_subdirectory(plSurface) |
||||
#add_subdirectory(plTransform) |
||||
#add_subdirectory(plUnifiedTime) |
||||
#add_subdirectory(plUUID) |
||||
#add_subdirectory(plVault) |
||||
#add_subdirectory(plWinStrBlock) # Not being used by any current slns |
||||
#add_subdirectory(plWndCtrls) # Not being used by any current slns |
||||
#add_subdirectory(PubUtilInc) |
||||
|
@ -0,0 +1,24 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(plMath_SOURCES |
||||
hsNoiseFunc.cpp |
||||
hsRadixSort.cpp |
||||
plAvg.cpp |
||||
plTriUtils.cpp |
||||
) |
||||
|
||||
set(plMath_HEADERS |
||||
hsNoiseFunc.h |
||||
hsRadixSort.h |
||||
hsSearchVersion.h |
||||
plAvg.h |
||||
plRandom.h |
||||
plTriUtils.h |
||||
) |
||||
|
||||
add_library(plMath STATIC ${plMath_SOURCES} ${plMath_HEADERS}) |
||||
|
||||
source_group("Source Files" FILES ${plMath_SOURCES}) |
||||
source_group("Header Files" FILES ${plMath_HEADERS}) |
@ -0,0 +1,131 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(plMessage_SOURCES |
||||
plAccountUpdateMsg.cpp |
||||
plAIMsg.cpp |
||||
plAnimCmdMsg.cpp |
||||
plAvatarMsg.cpp |
||||
plAvCoopMsg.cpp |
||||
plBulletMsg.cpp |
||||
plCaptureRenderMsg.cpp |
||||
plCCRMsg.cpp |
||||
plClimbMsg.cpp |
||||
plCollideMsg.cpp |
||||
plDynaDecalEnableMsg.cpp |
||||
plDynamicEnvMapMsg.cpp |
||||
plDynamicTextMsg.cpp |
||||
plInputEventMsg.cpp |
||||
plInputIfaceMgrMsg.cpp |
||||
plLayRefMsg.cpp |
||||
plLinkToAgeMsg.cpp |
||||
plListenerMsg.cpp |
||||
plLoadAgeMsg.cpp |
||||
plLoadAvatarMsg.cpp |
||||
plLoadCloneMsg.cpp |
||||
plLOSHitMsg.cpp |
||||
plLOSRequestMsg.cpp |
||||
plMatrixUpdateMsg.cpp |
||||
plMultistageMsg.cpp |
||||
plNCAgeJoinerMsg.cpp |
||||
plNetClientMgrMsg.cpp |
||||
plNetCommMsgs.cpp |
||||
plNetVoiceListMsg.cpp |
||||
plOneShotCallbacks.cpp |
||||
plOneShotMsg.cpp |
||||
plRenderRequestMsg.cpp |
||||
plRideAnimatedPhysMsg.cpp |
||||
plRippleShapeMsg.cpp |
||||
plSimInfluenceMsg.cpp |
||||
plSimStateMsg.cpp |
||||
plSwimMsg.cpp |
||||
plSynchEnableMsg.cpp |
||||
plTransitionMsg.cpp |
||||
plVaultNotifyMsg.cpp |
||||
) |
||||
|
||||
set(plMessage_HEADERS |
||||
plAccountUpdateMsg.h |
||||
plActivatorMsg.h |
||||
plAgeLoadedMsg.h |
||||
plAIMsg.h |
||||
plAngularVelocityMsg.h |
||||
plAnimCmdMsg.h |
||||
plAvatarFootMsg.h |
||||
plAvatarMsg.h |
||||
plAvCoopMsg.h |
||||
plBulletMsg.h |
||||
plCaptureRenderMsg.h |
||||
plCCRMessageCreatable.h |
||||
plCCRMsg.h |
||||
plClimbEventMsg.h |
||||
plClimbMsg.h |
||||
plCollideMsg.h |
||||
plCondRefMsg.h |
||||
plConnectedToVaultMsg.h |
||||
plConsoleMsg.h |
||||
plDeviceRecreateMsg.h |
||||
plDynaDecalEnableMsg.h |
||||
plDynamicEnvMapMsg.h |
||||
plDynamicTextMsg.h |
||||
plElementRefMsg.h |
||||
plExcludeRegionMsg.h |
||||
plInputEventMsg.h |
||||
plInputIfaceMgrMsg.h |
||||
plInterestingPing.h |
||||
plLayRefMsg.h |
||||
plLightRefMsg.h |
||||
plLinearVelocityMsg.h |
||||
plLinkToAgeMsg.h |
||||
plListenerMsg.h |
||||
plLoadAgeMsg.h |
||||
plLoadAvatarMsg.h |
||||
plLoadCloneMsg.h |
||||
plLOSHitMsg.h |
||||
plLOSRequestMsg.h |
||||
plMatRefMsg.h |
||||
plMatrixUpdateMsg.h |
||||
plMemberUpdateMsg.h |
||||
plMeshRefMsg.h |
||||
plMessageCreatable.h |
||||
plMovieMsg.h |
||||
plMultistageMsg.h |
||||
plNCAgeJoinerMsg.h |
||||
plNetClientMgrMsg.h |
||||
plNetCommMsgs.h |
||||
plNetOwnershipMsg.h |
||||
plNetVoiceListMsg.h |
||||
plNodeCleanupMsg.h |
||||
plOneShotCallbacks.h |
||||
plOneShotMsg.h |
||||
plParticleUpdateMsg.h |
||||
plPickedMsg.h |
||||
plPreloaderMsg.h |
||||
plRenderMsg.h |
||||
plRenderRequestMsg.h |
||||
plReplaceGeometryMsg.h |
||||
plResMgrHelperMsg.h |
||||
plResponderMsg.h |
||||
plRideAnimatedPhysMsg.h |
||||
plRippleShapeMsg.h |
||||
plRoomLoadNotifyMsg.h |
||||
plShadowCastMsg.h |
||||
plSimInfluenceMsg.h |
||||
plSimStateMsg.h |
||||
plSpawnModMsg.h |
||||
plSpawnRequestMsg.h |
||||
plSwimMsg.h |
||||
plSynchEnableMsg.h |
||||
plTimerCallbackMsg.h |
||||
plTransitionMsg.h |
||||
plTriggerMsg.h |
||||
plUniqueIdsMsg.h |
||||
plVaultNotifyMsg.h |
||||
) |
||||
|
||||
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS}) |
||||
|
||||
source_group("Source Files" FILES ${plMessage_SOURCES}) |
||||
source_group("Header Files" FILES ${plMessage_HEADERS}) |
@ -0,0 +1,21 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../FeatureLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
include_directories(${OPENSSL_INCLUDE_DIR}) |
||||
|
||||
set(plNetClientComm_SOURCES |
||||
plNetClientComm.cpp |
||||
) |
||||
|
||||
set(plNetClientComm_HEADERS |
||||
plNetClientComm.h |
||||
plNetClientCommCreatable.h |
||||
) |
||||
|
||||
add_library(plNetClientComm STATIC ${plNetClientComm_SOURCES} ${plNetClientComm_HEADERS}) |
||||
|
||||
source_group("Source Files" FILES ${plNetClientComm_SOURCES}) |
||||
source_group("Header Files" FILES ${plNetClientComm_HEADERS}) |
@ -0,0 +1,19 @@
|
||||
include_directories("../../CoreLib") |
||||
include_directories("../../NucleusLib/inc") |
||||
include_directories("../../NucleusLib") |
||||
include_directories("../../PubUtilLib") |
||||
|
||||
set(plNetClientRecorder_SOURCES |
||||
plNetClientRecorder.cpp |
||||
plNetClientStatsRecorder.cpp |
||||
plNetClientStreamRecorder.cpp |
||||
) |
||||
|
||||
set(plNetClientRecorder_HEADERS |
||||
plNetClientRecorder.h |
||||
) |
||||
|
||||
add_library(plNetClientRecorder STATIC ${plNetClientRecorder_SOURCES} ${plNetClientRecorder_HEADERS}) |
||||
|
||||
source_group("Source Files" FILES ${plNetClientRecorder_SOURCES}) |
||||
source_group("Header Files" FILES ${plNetClientRecorder_HEADERS}) |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue