From 9a598b1359505167ac2ec89de49731b5a1ec2f8e Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 31 Mar 2020 14:28:23 +0100 Subject: [PATCH] Bump Makefile to C++11, to match CMake --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 83889cf2..5bc75e63 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ endif ALL_CFLAGS += -std=c99 -MMD -MP -MF $@.d CSE2_CFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags) -ALL_CXXFLAGS += -std=c++98 -MMD -MP -MF $@.d +ALL_CXXFLAGS += -std=c++11 -MMD -MP -MF $@.d CSE2_CXXFLAGS += $(shell $(PKGCONFIG) sdl2 --cflags) $(shell $(PKGCONFIG) freetype2 --cflags) ifeq ($(STATIC), 1)