From fff71d21a86a2d79f917d2dffdc95d3162672fce Mon Sep 17 00:00:00 2001 From: Alessandro Pischedda Date: Wed, 17 Jan 2018 15:15:48 +0100 Subject: [PATCH] Update Makefile Use c++14 in order to use 'initialization lambda' --- tests/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index b5bf2f3..e27d884 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,6 +1,6 @@ -CPP = g++ -CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++11 -g -LD = g++ +CPP = g++ +CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++14 -g +LD = g++ LDFLAGS = -lamqpcpp -lcopernica_event -lcopernica_network -lev RESULT = a.out SOURCES = $(wildcard *.cpp)