mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
22 lines
440 B
CMake
22 lines
440 B
CMake
set(TEST_SOURCES
|
|
TestAES.cpp
|
|
TestASN1.cpp
|
|
TestBigFraction.cpp
|
|
TestBigInteger.cpp
|
|
TestChaCha20.cpp
|
|
TestChacha20Poly1305.cpp
|
|
TestChecksum.cpp
|
|
TestCurves.cpp
|
|
TestEd25519.cpp
|
|
TestHash.cpp
|
|
TestHMAC.cpp
|
|
TestMGF.cpp
|
|
TestOAEP.cpp
|
|
TestPBKDF2.cpp
|
|
TestPoly1305.cpp
|
|
TestRSA.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibCrypto LIBS LibCrypto)
|
|
endforeach()
|