summaryrefslogtreecommitdiff
path: root/examples/appsink-src/appsink-src.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/appsink-src/appsink-src.pro')
-rw-r--r--examples/appsink-src/appsink-src.pro7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/appsink-src/appsink-src.pro b/examples/appsink-src/appsink-src.pro
index 300da80..2176b39 100644
--- a/examples/appsink-src/appsink-src.pro
+++ b/examples/appsink-src/appsink-src.pro
@@ -10,7 +10,12 @@ CONFIG += silent
CONFIG += link_pkgconfig
# Now tell qmake to link to QtGStreamer and also use its include path and Cflags.
-PKGCONFIG += QtGStreamer-0.10 QtGStreamerUtils-0.10
+contains(QT_VERSION, ^4\\..*) {
+ PKGCONFIG += QtGStreamer-0.10 QtGStreamerUtils-0.10
+}
+contains(QT_VERSION, ^5\\..*) {
+ PKGCONFIG += Qt5GStreamer-0.10 Qt5GStreamerUtils-0.10
+}
# Recommended if you are using g++ 4.5 or later. Must be removed for other compilers.
#QMAKE_CXXFLAGS += -std=c++0x