Files
ladybird/Tests/LibWeb/CMakeLists.txt
Andreas Kling e87f889e31 Everywhere: Abandon Swift adoption
After making no progress on this for a very long time, let's acknowledge
it's not going anywhere and remove it from the codebase.
2026-02-17 10:48:09 -05:00

25 lines
583 B
CMake

set(TEST_SOURCES
TestCSSIDSpeed.cpp
TestContentFilter.cpp
TestControlMessageQueue.cpp
TestCSSInheritedProperty.cpp
TestCSSPixels.cpp
TestCSSSyntaxParser.cpp
TestCSSTokenStream.cpp
TestFetchURL.cpp
TestHTMLTokenizer.cpp
TestMicrosyntax.cpp
TestMimeSniff.cpp
TestNumbers.cpp
TestStrings.cpp
)
foreach(source IN LISTS TEST_SOURCES)
ladybird_test("${source}" LibWeb LIBS LibWeb)
endforeach()
target_link_libraries(TestContentFilter PRIVATE LibURL)
target_link_libraries(TestFetchURL PRIVATE LibURL)
add_subdirectory("test-web")