summaryrefslogtreecommitdiff
path: root/Libraries/LibCrypto/CMakeLists.txt
blob: b8306128bbf457781f31c8ca7a1a6e2ca20a585e (plain)
1
2
3
4
5
6
7
8
9
10
11
set(SOURCES
    BigInt/UnsignedBigInteger.cpp
    Cipher/AES.cpp
    Hash/MD5.cpp
    Hash/SHA1.cpp
    Hash/SHA2.cpp
    PK/RSA.cpp
)

serenity_lib(LibCrypto crypto)
target_link_libraries(LibCrypto LibC)