mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

As LibRegex was not specified in TEST_DIRECTORIES, the existing Tests/LibRegex subdirectory was not actually included during configuration. Also the RegexLibC test has not been needed since migration away from Serenitys LibC was done, so that test has been fully removed. I also renamed the Regex.cpp test to TestRegex.cpp to match the naming convention of most test targets.
7 lines
143 B
CMake
7 lines
143 B
CMake
set(TEST_SOURCES
|
|
TestRegex.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibRegex LIBS LibRegex)
|
|
endforeach()
|