Browse Source

Look for gstreamer on D drive as well as C

Fix
QGC4.4
Don Gagne 1 year ago committed by Don Gagne
parent
commit
efe0f24962
  1. 5
      src/VideoReceiver/VideoReceiver.pri

5
src/VideoReceiver/VideoReceiver.pri

@ -39,6 +39,11 @@ LinuxBuild { @@ -39,6 +39,11 @@ LinuxBuild {
#- gstreamer installed by default under c:/gstreamer
GST_ROOT = c:/gstreamer/1.0/msvc_x86_64
!exists($$GST_ROOT) {
# In GitHub actions windows runner installation is on D drive, so try there as well
GST_ROOT = d:/gstreamer/1.0/msvc_x86_64
}
exists($$GST_ROOT) {
CONFIG += VideoEnabled

Loading…
Cancel
Save