Skip to content

Commit

Permalink
Look for gstreamer on D drive as well as C
Browse files Browse the repository at this point in the history
  • Loading branch information
DonLakeFlyer committed Nov 19, 2023
1 parent 1624783 commit 6f02eca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/VideoReceiver/VideoReceiver.pri
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6f02eca

Please sign in to comment.