1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 06:45:07 +00:00
serenity/Userland/Libraries/LibPDF/CMakeLists.txt
Tim Schumacher ce2f1b845f Everywhere: Mark dependencies of most targets as PRIVATE
Otherwise, we end up propagating those dependencies into targets that
link against that library, which creates unnecessary link-time
dependencies.

Also included are changes to readd now missing dependencies to tools
that actually need them.
2022-11-01 14:49:09 +00:00

22 lines
482 B
CMake

set(SOURCES
ColorSpace.cpp
CommonNames.cpp
Document.cpp
DocumentParser.cpp
Encoding.cpp
Encryption.cpp
Filter.cpp
Fonts/PDFFont.cpp
Fonts/PS1FontProgram.cpp
Fonts/TrueTypeFont.cpp
Fonts/Type0Font.cpp
Fonts/Type1Font.cpp
ObjectDerivatives.cpp
Parser.cpp
Reader.cpp
Renderer.cpp
Value.cpp
)
serenity_lib(LibPDF pdf)
target_link_libraries(LibPDF PRIVATE LibCore LibCompress LibIPC LibGfx LibTextCodec LibCrypto)