mirror of
https://github.com/vsariola/sointu.git
synced 2026-04-01 03:33:12 -04:00
16 lines
411 B
PowerShell
16 lines
411 B
PowerShell
# Specify "native" or "go" if you only want one VST version.
|
|
|
|
if ($args -notcontains "go") {
|
|
|
|
Write-Host "Build VST with ASM synth"
|
|
go build -buildmode=c-shared -tags="plugin","native" -o sointu-vsti-native.dll .\cmd\sointu-vsti\
|
|
|
|
}
|
|
if ($args -notcontains "native") {
|
|
|
|
Write-Host "Build VST with GO synth"
|
|
go build -buildmode=c-shared -tags="plugin" -o sointu-vsti-go.dll .\cmd\sointu-vsti\
|
|
|
|
}
|
|
|