17 lines
299 B
CMake
17 lines
299 B
CMake
set(LIBHASH_SOURCE_FILES
|
|
libEncrypt_CRC32.h
|
|
libEncrypt_CRC32.cpp
|
|
libEncrypt_MD5.h
|
|
libEncrypt_MD5.cpp
|
|
libEncrypt_SHA256.h
|
|
libEncrypt_SHA256.cpp
|
|
libEncrypt_Hardware.h
|
|
libEncrypt_Hardware.cpp
|
|
libEncrypt_AES.h
|
|
libEncrypt_AES.cpp
|
|
)
|
|
|
|
add_library(libTinyEncrypt STATIC
|
|
${LIBHASH_SOURCE_FILES}
|
|
)
|