consolidate linux install script

This commit is contained in:
2026-02-08 14:30:03 -06:00
parent e2f5cb13e0
commit 0f17ab09c4
4 changed files with 22 additions and 1 deletions

View File

@@ -26,7 +26,6 @@ if (-not (Test-Path -Path $BUILD_DIR)) {
}
# detect dependencies
$libraries = @("rtaudio", "rtmidi", "yaml-cpp")
$dependencies_found = 0
foreach ($lib in $libraries) {
@@ -38,6 +37,7 @@ foreach ($lib in $libraries) {
}
}
# run the install script if dependencies not found
if (-not ($dependencies_found -eq $libraries.Count)) {
& "scripts\install_dependencies.ps1"
} else {