mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
18 lines
335 B
CMake
18 lines
335 B
CMake
set(TEST_SOURCES
|
|
TestAES.cpp
|
|
TestASN1.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()
|