CI: Remove explicit QT_HOST_PATH definition from Windows build script

This commit is contained in:
PatTheMav
2025-08-28 19:59:24 +02:00
committed by Ryan Foster
parent 2413ad16d2
commit 7a715733fc

View File

@@ -54,14 +54,6 @@ function Build {
$CmakeArgs = @('--preset', "windows-ci-${Target}")
# Required at the very least until OBS Studio updates to Qt 6.8+, pending review of Qt's build options for
# Windows ARM64.
if ( $Target -eq 'arm64' ) {
$QtDependencyVersion = $BuildSpec.dependencies.qt6.version
$CmakeArgs += @("-DQT_HOST_PATH=${ProjectRoot}\.deps\obs-deps-qt6-${QtDependencyVersion}-x64")
}
$CmakeBuildArgs = @('--build')
$CmakeInstallArgs = @()