mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 01:37:34 +00:00

Now that everything is LibTest based, we can just use the normal pattern of iterating + serenity_test(..).
5 lines
145 B
CMake
5 lines
145 B
CMake
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibGfx LIBS LibGUI)
|
|
endforeach()
|