mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 09:05:09 +00:00

This change splits test-crypto.cpp from Userland into separate test suites located in Tests/ directory.
4 lines
150 B
CMake
4 lines
150 B
CMake
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibCrypto LIBS LibCrypto)
|
|
endforeach()
|