mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
22 lines
404 B
CMake
22 lines
404 B
CMake
set(TEST_SOURCES
|
|
TestAES.cpp
|
|
TestASN1.cpp
|
|
TestBigFraction.cpp
|
|
TestBigInteger.cpp
|
|
TestChecksum.cpp
|
|
TestCurves.cpp
|
|
TestEd25519.cpp
|
|
TestEd448.cpp
|
|
TestHash.cpp
|
|
TestHKDF.cpp
|
|
TestHMAC.cpp
|
|
TestOAEP.cpp
|
|
TestPBKDF2.cpp
|
|
TestPSS.cpp
|
|
TestRSA.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibCrypto LIBS LibCrypto)
|
|
endforeach()
|