aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-05-06 11:38:26 +0200
committerlns <matzeton@googlemail.com>2022-05-06 11:38:26 +0200
commit3b4947b8b4a5c6ec9421ade5cc759ca3b947bd67 (patch)
tree8ac0c497f65dee15cf8d0796acc640d0d0e27092 /Makefile
parent5e7d06b220d21e03d01334c9f445a8407916bb0d (diff)
png supportHEADmaster
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6387651..2150710 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,17 @@
CXX=g++
PKGCONFIG=pkg-config
-CXXFLAGS+=-Wall -Wextra -Dcimg_use_jpeg=1 -Dcimg_display=0 -Dcimg_plugin='"jpeg_buffer.h"' -g $(shell $(PKGCONFIG) --cflags libcurl) $(shell $(PKGCONFIG) --cflags libjpeg)
-LIBS+=$(shell $(PKGCONFIG) --libs libcurl) $(shell $(PKGCONFIG) --libs libjpeg)
+CXXFLAGS+=-Wall -Wextra -Dcimg_use_jpeg=1 -Dcimg_use_png=1 -Dcimg_display=0 -Dcimg_plugin='"jpeg_buffer.h"' -g
+
+CXXFLAGS+= \
+ $(shell $(PKGCONFIG) --cflags libcurl) \
+ $(shell $(PKGCONFIG) --cflags libjpeg) \
+ $(shell $(PKGCONFIG) --cflags libpng)
+
+LIBS+= \
+ $(shell $(PKGCONFIG) --libs libcurl) \
+ $(shell $(PKGCONFIG) --libs libjpeg) \
+ $(shell $(PKGCONFIG) --libs libpng)
ifneq ($(strip $(ENABLE_SANITIZER)),)
CXXFLAGS+=-fsanitize=address -fsanitize=leak -fsanitize=undefined
@@ -15,6 +24,9 @@ SOURCES:=GithubAPI.cpp ImageManipulation.cpp main.cpp
all: $(APP)
$(APP): $(HEADERS) $(SOURCES)
+ $(PKGCONFIG) --exist libcurl || false
+ $(PKGCONFIG) --exist libjpeg || false
+ $(PKGCONFIG) --exist libpng || false
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(SOURCES) -o $@ $(LIBS)
clean: