1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-19 19:59:09 +00:00
Files
CWE-ou-minkata/Sources/Plasma/NucleusLib/pnMessage/CMakeLists.txt
Darryl Pogue c91eb23f92 Clean up the linking mess in CMake.
(Of the library variety, not the book variety... although that's still
confusingly similar terminology)
2011-10-28 23:21:44 -07:00

66 lines
1.5 KiB
CMake

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})
target_link_libraries(pnMessage CoreLib pnNetCommon)
source_group("Header Files" FILES ${pnMessage_HEADERS})
source_group("Source Files" FILES ${pnMessage_SOURCES})