qt: The code requires at least C++11

... and clang requires this to be specified on the commandline while gcc
nowadays defaults to C++11 or even newer.
This commit is contained in:
Sebastian Dröge 2017-01-25 19:21:03 +02:00
parent 046aad8c1b
commit bba07f3c35

View file

@ -38,7 +38,7 @@ libgstqmlgl_la_CXXFLAGS = \
$(GST_BASE_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(QT_CFLAGS) \
$(GL_CFLAGS)
$(GL_CFLAGS) -std=c++11
libgstqmlgl_la_LIBADD = \
$(GST_BASE_LIBS) \