Skip to content

Commit

Permalink
Build: Don't download ASIO for JACK builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffie committed Mar 1, 2022
1 parent 9269a9e commit e1c9fa8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions windows/deploy_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,15 @@ Function Install-Dependencies
Install-PackageProvider -Name "Nuget" -Scope CurrentUser -Force
}
Initialize-Module-Here -m "VSSetup"
Install-Dependency -Uri $AsioSDKUrl `
-Name $AsioSDKName -Destination "ASIOSDK2"
Install-Dependency -Uri $NsisUrl `
-Name $NsisName -Destination "NSIS"

if ($BuildOption -Notmatch "jack") {
# Don't download ASIO SDK on Jamulus JACK builds to save
# resources and to be extra-sure license-wise.
Install-Dependency -Uri $AsioSDKUrl `
-Name $AsioSDKName -Destination "ASIOSDK2"
}
}

# Setup environment variables and build tool paths
Expand Down

0 comments on commit e1c9fa8

Please sign in to comment.