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.
18 lines
455 B
18 lines
455 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
include_directories("../../PubUtilLib") |
|
|
|
include_directories(${OPENSSL_INCLUDE_DIR}) |
|
|
|
set(plEncryption_SOURCES |
|
plChecksum.cpp |
|
) |
|
|
|
set(plEncryption_HEADERS |
|
plChecksum.h |
|
) |
|
|
|
add_library(plEncryption STATIC ${plEncryption_SOURCES} ${plEncryption_HEADERS}) |
|
|
|
source_group("Source Files" FILES ${plEncryption_SOURCES}) |
|
source_group("Header Files" FILES ${plEncryption_HEADERS})
|
|
|