Wideband autonomous SDR analysis engine forked from sdr-visual-suite
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
330B

  1. $ErrorActionPreference = 'Stop'
  2. Write-Host 'Preparing Windows CUDA DLL for gpudemod (MSVC/nvcc path)...' -ForegroundColor Cyan
  3. powershell -ExecutionPolicy Bypass -File .\build-gpudemod-dll.ps1
  4. if ($LASTEXITCODE -ne 0) { throw 'gpudemod DLL build failed' }
  5. Write-Host 'Done. gpudemod_kernels.dll is ready.' -ForegroundColor Green