summaryrefslogtreecommitdiffhomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2018-01-10 20:49:03 +0100
committerRoland Stigge <stigge@antcom.de>2018-01-10 20:49:03 +0100
commit188a87d1a66f09dc7b224b89e6c1c16d77681423 (patch)
treea5e6c104af5af0548cb1e591b11b42f484c51b5a /src/Makefile
parent97c8b7f21b8aeeda56f68deee8349f381d60eb96 (diff)
Handle errors from HTTP, separated out commands as classes
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index d7f3847..0a8ab19 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,7 +1,7 @@
ARCH=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
TARGET=query
-CPPFLAGS=-Wall -O2 -fPIC -I/usr/include/$(ARCH)/qt5 -I/usr/include/$(ARCH)/qt5/QtCore
-LDFLAGS=-Wall -O2 -fPIC -lstdc++ -lfcgi -lQt5Core
+CPPFLAGS=-Wall -O2 -fPIC -std=gnu++17 -I/usr/include/$(ARCH)/qt5 -I/usr/include/$(ARCH)/qt5/QtCore
+LDFLAGS=-Wall -O2 -fPIC -std=gnu++17 -lstdc++ -lfcgi -lQt5Core
OBJS=webbox.o
all: $(TARGET)