mirror of
https://github.com/vsariola/sointu.git
synced 2026-04-01 11:42:58 -04:00
VST DLLs v1.0 in both synth versions (seem identical)
This commit is contained in:
@ -1,14 +1,15 @@
|
||||
if ($args -contains "native") {
|
||||
# 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.dll .\cmd\sointu-vsti\
|
||||
go build -buildmode=c-shared -tags="plugin","native" -o sointu-vsti-native.dll .\cmd\sointu-vsti\
|
||||
|
||||
} elseif ($args -contains "go") {
|
||||
}
|
||||
if ($args -notcontains "native") {
|
||||
|
||||
Write-Host "Build VST with GO synth"
|
||||
go build -buildmode=c-shared -tags="plugin" -o sointu-vsti.dll .\cmd\sointu-vsti\
|
||||
go build -buildmode=c-shared -tags="plugin" -o sointu-vsti-go.dll .\cmd\sointu-vsti\
|
||||
|
||||
} else {
|
||||
Write-Host "specify either ""native"" or ""go"" argument."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user