mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:45:06 +00:00

This commit removes the only 3rd party library (and its usages) in serenity: puff, which is used for deflate decompression. and replaces it with the existing original serenity implementation in LibCompress. :^)
38 lines
717 B
CMake
38 lines
717 B
CMake
set(SOURCES
|
|
AffineTransform.cpp
|
|
Bitmap.cpp
|
|
BitmapFont.cpp
|
|
BMPLoader.cpp
|
|
BMPWriter.cpp
|
|
CharacterBitmap.cpp
|
|
ClassicStylePainter.cpp
|
|
ClassicWindowTheme.cpp
|
|
Color.cpp
|
|
DisjointRectSet.cpp
|
|
Emoji.cpp
|
|
FontDatabase.cpp
|
|
GIFLoader.cpp
|
|
ICOLoader.cpp
|
|
ImageDecoder.cpp
|
|
JPGLoader.cpp
|
|
Painter.cpp
|
|
Palette.cpp
|
|
Path.cpp
|
|
PBMLoader.cpp
|
|
PGMLoader.cpp
|
|
PNGLoader.cpp
|
|
PNGWriter.cpp
|
|
PPMLoader.cpp
|
|
Point.cpp
|
|
Rect.cpp
|
|
ShareableBitmap.cpp
|
|
Size.cpp
|
|
StylePainter.cpp
|
|
SystemTheme.cpp
|
|
Triangle.cpp
|
|
Typeface.cpp
|
|
WindowTheme.cpp
|
|
)
|
|
|
|
serenity_lib(LibGfx gfx)
|
|
target_link_libraries(LibGfx LibM LibCompress LibCore LibTTF)
|