From 155690cdaa63e1e4a4d13929bde3819d57e0e85b Mon Sep 17 00:00:00 2001 From: Brad Grantham Date: Fri, 11 Dec 2020 22:00:48 -0800 Subject: [PATCH] move to C++17 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa20235..0d5776e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ INCFLAGS += -I/opt/local/include -CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O2 +CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++17 -O2 LDFLAGS += -L/opt/local/lib LDLIBS += -lglfw -lao -framework OpenGL -framework Cocoa -framework IOkit