X-Git-Url: https://git.ao2.it/experiments/opencv_trail_effect.git/blobdiff_plain/7555c94ede06439d70ea34dca41947c0caf2fa95..648650d64c6777240f5e9e8ba5b005e7b6f415c3:/Makefile diff --git a/Makefile b/Makefile index 4e316b9..bd0d850 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CXXFLAGS = -ansi -pedantic -pedantic-errors -Wall -g3 -O2 -D_ANSI_SOURCE_ +CXXFLAGS = -std=c++11 -pedantic -pedantic-errors -Wall -g3 -O2 -D_ANSI_SOURCE_ CXXFLAGS += -fno-common \ -fvisibility=hidden \ -Wall \ @@ -34,8 +34,8 @@ ifeq ($(COMPILER), clang) LDFLAGS += -Qunused-arguments endif -CXXFLAGS += $(shell pkg-config --cflags opencv) -LDLIBS += $(shell pkg-config --libs opencv) +CXXFLAGS += $(shell pkg-config --cflags opencv4 | sed -e 's/-I/-isystem/g') +LDLIBS += $(shell pkg-config --libs opencv4) LINK.o = $(LINK.cpp) opencv_trail_effect: