Update Makefile
Use c++14 in order to use 'initialization lambda'
This commit is contained in:
parent
b25bd583a3
commit
fff71d21a8
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue