mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00

After the CSSPixels implementation evolved from a wrapper of double to a fixed-point saturated math arithmetic implementation, it makes sense to have separate tests for it.
11 lines
257 B
CMake
11 lines
257 B
CMake
set(TEST_SOURCES
|
|
TestCSSIDSpeed.cpp
|
|
TestCSSPixels.cpp
|
|
TestHTMLTokenizer.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibWeb LIBS LibWeb)
|
|
endforeach()
|
|
|
|
install(FILES tokenizer-test.html DESTINATION usr/Tests/LibWeb)
|