Browse Source

Add %COMMONPROGRAMFILES%/VST2 to the default Windows 64bit VST paths

tags/1.9.5
falkTX 10 years ago
parent
commit
d0c2feda2a
2 changed files with 4 additions and 1 deletions
  1. +1
    -1
      data/linux/make-binary.sh
  2. +3
    -0
      source/carla_shared.py

+ 1
- 1
data/linux/make-binary.sh View File

@@ -6,7 +6,7 @@ if [ -f Makefile ]; then
cd data/linux
fi

VERSION="1.9.5~git20141019.2"
VERSION="1.9.5~git20141020.4"

if [ ! -d carla-git-static_"$VERSION"_amd64.deb ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/carla-git-static_"$VERSION"_amd64.deb


+ 3
- 0
source/carla_shared.py View File

@@ -317,6 +317,9 @@ if WINDOWS:
DEFAULT_VST_PATH = PROGRAMFILES + "\\VstPlugins"
DEFAULT_VST_PATH += ";" + PROGRAMFILES + "\\Steinberg\\VstPlugins"

if kIs64bit:
DEFAULT_VST_PATH += ";" + COMMONPROGRAMFILES + "\\VST2"

DEFAULT_VST3_PATH = COMMONPROGRAMFILES + "\\VST3"

DEFAULT_GIG_PATH = APPDATA + "\\GIG"


Loading…
Cancel
Save