From 14aebae6804a1f4f8f78650680b5ab9c17fe738f Mon Sep 17 00:00:00 2001 From: Benjamin Schulz Date: Wed, 25 Feb 2015 21:05:26 +0100 Subject: [PATCH] * enabled c++11 in Makefile --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index 1cf5868..1806e84 100644 --- a/build/Makefile +++ b/build/Makefile @@ -42,7 +42,7 @@ $(SRC)/version.hpp: Makefile version.txt $(BINARY): $(SRC)/*.cpp $(SRC)/*.hpp $(SRC)/version.hpp mkdir -p `dirname $(BINARY)` - $(CC) -O3 -Wall -Werror $(SRC)/*.cpp $(INCLUDES) $(LD_PLATFORM_FLAGS) -o $(BINARY) + $(CC) -O3 -Wall -Werror -std=c++11 $(SRC)/*.cpp $(INCLUDES) $(LD_PLATFORM_FLAGS) -o $(BINARY) ../examples/%.json : ../example_data/%.wav $(BINARY) $+ --precision 2 --channels left right mid side min max -o $@