From: Steinar H. Gunderson Date: Wed, 13 Jan 2016 00:12:37 +0000 (+0100) Subject: Remove -Werror; great for development, not so much for users. X-Git-Tag: 1.0.0~12 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=b2766e96ceadecdec2eafc85e2cec55c9fd27a34 Remove -Werror; great for development, not so much for users. --- diff --git a/Makefile b/Makefile index 444e56d..0ef287e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CXX=g++ PKG_MODULES = Qt5Core Qt5Gui Qt5Widgets Qt5OpenGLExtensions Qt5OpenGL libusb-1.0 movit lua5.2 libmicrohttpd -CXXFLAGS := -O2 -march=native -g -std=gnu++11 -Wall -Wno-deprecated-declarations -Werror -fPIC $(shell pkg-config --cflags $(PKG_MODULES)) -pthread -DMOVIT_SHADER_DIR=\"$(shell pkg-config --variable=shaderdir movit)\" +CXXFLAGS := -O2 -march=native -g -std=gnu++11 -Wall -Wno-deprecated-declarations -fPIC $(shell pkg-config --cflags $(PKG_MODULES)) -pthread -DMOVIT_SHADER_DIR=\"$(shell pkg-config --variable=shaderdir movit)\" LDFLAGS=$(shell pkg-config --libs $(PKG_MODULES)) -lEGL -lGL -pthread -lva -lva-drm -lva-x11 -lX11 -lavformat -lavcodec -lavutil -lswscale -lzita-resampler -lasound # Qt objects