ladybird/Userland/Libraries/LibPDF/CMakeLists.txt
Matthew Olsson 7b4e36bf88 LibPDF: Split ColorSpace into a different class for each color space
While unnecessary at the moment, this will allow for more fine-grained
control when complex color spaces get added.
2021-06-12 22:45:01 +04:30

13 lines
246 B
CMake

set(SOURCES
ColorSpace.cpp
CommonNames.cpp
Document.cpp
Filter.cpp
Object.cpp
Parser.cpp
Renderer.cpp
Value.cpp
)
serenity_lib(LibPDF pdf)
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx LibTextCodec)