1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 20:29:10 +00:00
Files
CWE-ou-minkata/Sources/Plasma/NucleusLib/inc/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

37 lines
843 B
CMake

include_directories("../../CoreLib")
include_directories("../../NucleusLib")
include_directories("../../NucleusLib/inc")
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})
target_link_libraries(pnNucleusInc CoreLib pnTimer)
source_group("Header Files" FILES ${pnNucleusInc_HEADERS})
source_group("Source Files" FILES ${pnNucleusInc_SOURCES})