From 7308e096be7944c169ee0dea1ee5ab33d3c22fcf Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Fri, 13 Mar 2020 05:42:41 +0100 Subject: [PATCH] Move to c++17 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d7bb532..0dcf1b3 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DATADIR=/etc/sgs-xl/data # choose this if you want debugging help #CPPFLAGS=-g -ggdb -W -Wall -std=c++11 -DCFG_DIR=\"$(CFGDIR)\" # or, you can choose this for a much smaller executable without debugging help -CPPFLAGS= -g -W -Wall -std=c++11 -DCFG_DIR=\"$(CFGDIR)\" -DDATA_DIR=\"$(DATADIR)\" +CPPFLAGS= -g -W -Wall -std=c++17 -DCFG_DIR=\"$(CFGDIR)\" -DDATA_DIR=\"$(DATADIR)\" SRCS = $(wildcard *.cpp) OBJS = $(SRCS:.cpp=.o)