mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
2331fe5e68
Interpolation is needed in more than one place, and I couldn't find a central place where I could borrow a readily available interpolation routine, so I've implemented the first simple interpolation object. More will follow for more complex scenarios.
23 lines
504 B
CMake
23 lines
504 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
|
|
Interpolation.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)
|