Make h264bitstream dependency optional

This commit is contained in:
Cameron Gutman
2026-07-19 14:11:27 -05:00
parent 1d1fe1aac3
commit 2328713f4e
3 changed files with 21 additions and 4 deletions
+7 -3
View File
@@ -2,16 +2,20 @@ TEMPLATE = subdirs
SUBDIRS = \
moonlight-common-c \
qmdnsengine \
app \
h264bitstream
app
# Build the dependencies in parallel before the final app
app.depends = qmdnsengine moonlight-common-c h264bitstream
app.depends = qmdnsengine moonlight-common-c
win32:!winrt {
SUBDIRS += AntiHooking
app.depends += AntiHooking
}
!disable-h264bitstream {
SUBDIRS += h264bitstream
app.depends += h264bitstream
}
# Support debug and release builds from command line for CI
CONFIG += debug_and_release