You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
643 B
26 lines
643 B
14 years ago
|
include_directories(../../CoreLib)
|
||
|
include_directories(../../FeatureLib)
|
||
|
include_directories(../../NucleusLib)
|
||
|
include_directories(../../NucleusLib/inc)
|
||
|
include_directories(../../PubUtilLib)
|
||
|
|
||
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
||
|
|
||
|
set(pfCharacter_SOURCES
|
||
|
pfMarkerInfo.cpp
|
||
|
pfMarkerMgr.cpp
|
||
|
plPlayerModifier.cpp
|
||
|
)
|
||
|
|
||
|
set(pfCharacter_HEADERS
|
||
|
pfCharacterCreatable.h
|
||
|
pfMarkerInfo.h
|
||
|
pfMarkerMgr.h
|
||
|
plPlayerModifier.h
|
||
|
)
|
||
|
|
||
|
add_library(pfCharacter STATIC ${pfCharacter_SOURCES} ${pfCharacter_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${pfCharacter_SOURCES})
|
||
|
source_group("Header Files" FILES ${pfCharacter_HEADERS})
|