Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-06-24 18:45:47 +0300
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-06-25 18:20:55 +0300
commit0fcd87e42ac1f5b723c8b4ee332a43d02bcb0968 (patch)
tree82d28c881e3613f236d775bf8c9963c9a481c8dc /tests
parent13331e051fa9215f575ef1620ab437cb18d5bbf9 (diff)
meson: Build Qt5 tests with -std=c++11
We already do this for the plugin. https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/780#note_548179 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/642>
Diffstat (limited to 'tests')
-rw-r--r--tests/examples/qt/qmloverlay/meson.build1
-rw-r--r--tests/examples/qt/qmlsink-dynamically-added/meson.build1
-rw-r--r--tests/examples/qt/qmlsink/meson.build1
-rw-r--r--tests/examples/qt/qmlsrc/meson.build1
4 files changed, 4 insertions, 0 deletions
diff --git a/tests/examples/qt/qmloverlay/meson.build b/tests/examples/qt/qmloverlay/meson.build
index ccf27e9e5..b1912463f 100644
--- a/tests/examples/qt/qmloverlay/meson.build
+++ b/tests/examples/qt/qmloverlay/meson.build
@@ -5,6 +5,7 @@ sources = [
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmloverlay.qrc')
executable('qmlgloverlay', sources, qt_preprocessed,
dependencies : [gst_dep, qt5qml_example_deps],
+ override_options : ['cpp_std=c++11'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)
diff --git a/tests/examples/qt/qmlsink-dynamically-added/meson.build b/tests/examples/qt/qmlsink-dynamically-added/meson.build
index 31facae0a..783011aa0 100644
--- a/tests/examples/qt/qmlsink-dynamically-added/meson.build
+++ b/tests/examples/qt/qmlsink-dynamically-added/meson.build
@@ -5,6 +5,7 @@ sources = [
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmlsink-dyn-added.qrc')
executable('qmlsink-dynamically-added', sources, qt_preprocessed,
dependencies : [gst_dep, gstgl_dep, qt5qml_example_deps],
+ override_options : ['cpp_std=c++11'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)
diff --git a/tests/examples/qt/qmlsink/meson.build b/tests/examples/qt/qmlsink/meson.build
index f2a7a1674..5e2d1c93b 100644
--- a/tests/examples/qt/qmlsink/meson.build
+++ b/tests/examples/qt/qmlsink/meson.build
@@ -5,6 +5,7 @@ sources = [
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmlsink.qrc')
executable('qmlsink', sources, qt_preprocessed,
dependencies : [gst_dep, qt5qml_example_deps],
+ override_options : ['cpp_std=c++11'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)
diff --git a/tests/examples/qt/qmlsrc/meson.build b/tests/examples/qt/qmlsrc/meson.build
index 3d55a28cb..c7f3add64 100644
--- a/tests/examples/qt/qmlsrc/meson.build
+++ b/tests/examples/qt/qmlsrc/meson.build
@@ -5,6 +5,7 @@ sources = [
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmlsrc.qrc')
executable('qmlsrc', sources, qt_preprocessed,
dependencies : [gst_dep, qt5qml_example_deps],
+ override_options : ['cpp_std=c++11'],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)