Update Makefile

Use c++14 in order to use 'initialization lambda'
This commit is contained in:
Alessandro Pischedda 2018-01-17 15:15:48 +01:00 committed by GitHub
parent b25bd583a3
commit fff71d21a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
CPP = g++ CPP = g++
CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++11 -g CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++14 -g
LD = g++ LD = g++
LDFLAGS = -lamqpcpp -lcopernica_event -lcopernica_network -lev LDFLAGS = -lamqpcpp -lcopernica_event -lcopernica_network -lev
RESULT = a.out RESULT = a.out