mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
4d5ffd364a
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()
|