blob: 81e3176ba2c2df865165b46a2b563e7bf281a8cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
set(TEST_SOURCES
TestAES.cpp
TestBigInteger.cpp
TestChecksum.cpp
TestChaCha20.cpp
TestCurves.cpp
TestEd25519.cpp
TestHash.cpp
TestHMAC.cpp
TestPoly1305.cpp
TestRSA.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibCrypto LIBS LibCrypto)
endforeach()
|