ladybird/Userland/Libraries/LibPDF/CMakeLists.txt
Matthew Olsson 4479c1bff0 LibPDF: Add a bitmap renderer
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!
2021-05-18 16:35:23 +02:00

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)