diff --git a/build_vst_plugin.ps1 b/build_vst_plugin.ps1 index 9977f3d..64e977c 100644 --- a/build_vst_plugin.ps1 +++ b/build_vst_plugin.ps1 @@ -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." - } +} diff --git a/sointu-vsti-go-v1.0.dll b/sointu-vsti-go-v1.0.dll new file mode 100644 index 0000000..0e0f538 Binary files /dev/null and b/sointu-vsti-go-v1.0.dll differ diff --git a/sointu-vsti-native-v1.0.dll b/sointu-vsti-native-v1.0.dll new file mode 100644 index 0000000..7f8db5f Binary files /dev/null and b/sointu-vsti-native-v1.0.dll differ