Wideband autonomous SDR analysis engine forked from sdr-visual-suite
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 lines
449B

  1. $ErrorActionPreference = 'Stop'
  2. $gcc = 'C:\msys64\mingw64\bin'
  3. if (-not (Test-Path (Join-Path $gcc 'gcc.exe'))) {
  4. throw "gcc not found at $gcc"
  5. }
  6. $env:PATH = "$gcc;" + $env:PATH
  7. $env:CGO_ENABLED = '1'
  8. Write-Host "Building default Windows app path (no CUDA artifact integration assumptions)..." -ForegroundColor Cyan
  9. go build ./cmd/sdrd
  10. if ($LASTEXITCODE -ne 0) { throw "default windows build failed" }
  11. Write-Host "Done." -ForegroundColor Green