summaryrefslogtreecommitdiff
path: root/LibGUI
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-21 03:57:42 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-21 03:57:42 +0100
commit42755e98cf2ce7d10f1899051b63513d442f92ec (patch)
treee6fbe05808cea137bd26fc0e5ae17534354448f5 /LibGUI
parented2303e2d8f795a7c1bd597fed9f77afe526c228 (diff)
downloadserenity-42755e98cf2ce7d10f1899051b63513d442f92ec.zip
SharedGraphics: Implement a simple PNG decoder.
This is extremely unoptimized, but it does successfully load "folder32.png" so it must be at least somewhat correct. :^)
Diffstat (limited to 'LibGUI')
-rw-r--r--LibGUI/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/LibGUI/Makefile b/LibGUI/Makefile
index 9648deb7fa..3251502dab 100644
--- a/LibGUI/Makefile
+++ b/LibGUI/Makefile
@@ -4,7 +4,8 @@ SHAREDGRAPHICS_OBJS = \
../SharedGraphics/Rect.o \
../SharedGraphics/GraphicsBitmap.o \
../SharedGraphics/CharacterBitmap.o \
- ../SharedGraphics/Color.o
+ ../SharedGraphics/Color.o \
+ ../SharedGraphics/PNGLoader.o
LIBGUI_OBJS = \
GIODevice.o \