mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 07:04:58 +00:00

This commit adds the Renderer class, which is responsible for rendering a page into a Gfx::Bitmap. There are many improvements to make here, but this is a great start!
11 lines
194 B
CMake
11 lines
194 B
CMake
set(SOURCES
|
|
Object.cpp
|
|
Document.cpp
|
|
Object.cpp
|
|
Parser.cpp
|
|
Renderer.cpp
|
|
Value.cpp
|
|
)
|
|
|
|
serenity_lib(LibPDF pdf)
|
|
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx)
|