From 604542da71e8adb29d1b166fe4d2351f641e4d00 Mon Sep 17 00:00:00 2001 From: Beau Gunderson Date: Fri, 28 Jul 2017 00:07:38 -0700 Subject: [PATCH] fix compilation with gcc and clang --- porosity/porosity/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/porosity/porosity/Makefile b/porosity/porosity/Makefile index b95f3c7..b66ab1b 100644 --- a/porosity/porosity/Makefile +++ b/porosity/porosity/Makefile @@ -1,6 +1,7 @@ SOURCES=$(shell find . -name "*.cpp") OBJECTS=$(SOURCES:%.cpp=%.o) TARGET=porosity +CXXFLAGS=-std=c++14 all: $(TARGET)