mirror of
https://github.com/vsariola/sointu.git
synced 2026-04-05 21:52:48 -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"
|
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"
|
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."
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|||||||
BIN
sointu-vsti-go-v1.0.dll
Normal file
BIN
sointu-vsti-go-v1.0.dll
Normal file
Binary file not shown.
BIN
sointu-vsti-native-v1.0.dll
Normal file
BIN
sointu-vsti-native-v1.0.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user