mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:15:06 +00:00
13 lines
256 B
CMake
13 lines
256 B
CMake
set(TEST_SOURCES
|
|
TestAES.cpp
|
|
TestBigInteger.cpp
|
|
TestChecksum.cpp
|
|
TestCurves.cpp
|
|
TestHash.cpp
|
|
TestHMAC.cpp
|
|
TestRSA.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibCrypto LIBS LibCrypto)
|
|
endforeach()
|