1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 07:55:07 +00:00
serenity/Libraries/LibWeb/DumpLayoutTree/CMakeLists.txt
Andreas Kling f52ce49a36 LibWeb: Add a simple DumpLayoutTree program
This loads a page and, dumps the layout tree to stdout, and exits.
2020-12-08 23:36:19 +01:00

6 lines
102 B
CMake

set(SOURCES
main.cpp
)
serenity_bin(DumpLayoutTree)
target_link_libraries(DumpLayoutTree LibWeb)