diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-09-01 23:44:24 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-02 09:08:23 +0200 |
commit | 58797a1289b2719b731dbb6a81e064fd4786db03 (patch) | |
tree | 5e760452feb85d9d3486c744dd1097e69aa81e6c /Tests/LibRegex | |
parent | b5a145b46677dd0853ffa65842a2a6cfe06ca061 (diff) | |
download | serenity-58797a1289b2719b731dbb6a81e064fd4786db03.zip |
Tests: Remove all file(GLOB) from CMakeLists in Tests
Using a file(GLOB) to find all the test files in a directory is an easy
hack to get things started, but has some drawbacks. Namely, if you add
a test, it won't be found again without re-running CMake. `ninja` seems
to do this automatically, but it would be nice to one day stop seeing it
rechecking our globbed directories.
Diffstat (limited to 'Tests/LibRegex')
-rw-r--r-- | Tests/LibRegex/CMakeLists.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Tests/LibRegex/CMakeLists.txt b/Tests/LibRegex/CMakeLists.txt index 1b81dcf482..eeeacecfba 100644 --- a/Tests/LibRegex/CMakeLists.txt +++ b/Tests/LibRegex/CMakeLists.txt @@ -1,5 +1,9 @@ -file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp") +set(TEST_SOURCES + Benchmark.cpp + Regex.cpp + RegexLibC.cpp +) -foreach(source ${TEST_SOURCES}) - serenity_test(${source} LibRegex LIBS LibRegex) +foreach(source IN LISTS TEST_SOURCES) + serenity_test("${source}" LibRegex LIBS LibRegex) endforeach() |