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.
23 lines
608 B
23 lines
608 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
include_directories(${OPENSSL_INCLUDE_DIR}) |
|
|
|
set(pnEncryption_SOURCES |
|
plBigNum.cpp |
|
plChallengeHash.cpp |
|
plChecksum.cpp |
|
) |
|
|
|
set(pnEncryption_HEADERS |
|
plBigNum.h |
|
plChallengeHash.h |
|
plChecksum.h |
|
plRandom.h |
|
) |
|
|
|
add_library(pnEncryption STATIC ${pnEncryption_SOURCES} ${pnEncryption_HEADERS}) |
|
target_link_libraries(pnEncryption CoreLib) |
|
target_link_libraries(pnEncryption ${OPENSSL_LIBRARIES}) |
|
|
|
source_group("Source Files" FILES ${pnEncryption_SOURCES}) |
|
source_group("Header Files" FILES ${pnEncryption_HEADERS})
|
|
|