windows vst install scripts
This commit is contained in:
parent
72af6a44b9
commit
02f03b042e
0
scripts/dev_vst_install.sh → scripts/mac/dev_vst_install.sh
Executable file → Normal file
0
scripts/dev_vst_install.sh → scripts/mac/dev_vst_install.sh
Executable file → Normal file
0
scripts/vst_install.sh → scripts/mac/vst_install.sh
Executable file → Normal file
0
scripts/vst_install.sh → scripts/mac/vst_install.sh
Executable file → Normal file
7
scripts/win/dev_vst_install.ps1
Normal file
7
scripts/win/dev_vst_install.ps1
Normal file
|
@ -0,0 +1,7 @@
|
|||
cargo xtask bundle twinc_emu_vst
|
||||
if (Test-Path $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3)
|
||||
{
|
||||
Remove-Item -Recurse -Force $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3
|
||||
}
|
||||
Copy-Item -Path .\target\bundled\twinc_emu_vst.vst3\ -Destination $env:VST3_DEV_INSTALL -Recurse
|
||||
echo "Copied to $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3"
|
7
scripts/win/vst_install.ps1
Normal file
7
scripts/win/vst_install.ps1
Normal file
|
@ -0,0 +1,7 @@
|
|||
cargo xtask bundle twinc_emu_vst --release
|
||||
if (Test-Path $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3)
|
||||
{
|
||||
Remove-Item -Recurse -Force $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3
|
||||
}
|
||||
Copy-Item -Path .\target\bundled\twinc_emu_vst.vst3\ -Destination $env:VST3_DEV_INSTALL -Recurse
|
||||
echo "Copied to $env:VST3_DEV_INSTALL\twinc_emu_vst.vst3"
|
Loading…
Reference in a new issue