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.
24 lines
624 B
24 lines
624 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib/inc") |
|
include_directories("../../NucleusLib") |
|
include_directories("../../PubUtilLib") |
|
|
|
include_directories(${OPENSSL_INCLUDE_DIR}) |
|
|
|
set(plStatGather_SOURCES |
|
plAutoProfile.cpp |
|
plCalculatedProfiles.cpp |
|
plProfileManagerFull.cpp |
|
) |
|
|
|
set(plStatGather_HEADERS |
|
plAutoProfile.h |
|
plCalculatedProfiles.h |
|
plProfileManagerFull.h |
|
plStatGatherCreatable.h |
|
) |
|
|
|
add_library(plStatGather STATIC ${plStatGather_SOURCES} ${plStatGather_HEADERS}) |
|
|
|
source_group("Source Files" FILES ${plStatGather_SOURCES}) |
|
source_group("Header Files" FILES ${plStatGather_HEADERS})
|
|
|