From a5de0b80170c21328e3898660acbe45c9c4ba381 Mon Sep 17 00:00:00 2001 From: Esa Juhani Ruoho Date: Tue, 11 Dec 2018 14:48:09 +0200 Subject: [PATCH 1/2] example of VST2SDK_DIR setting Minor addition ``` export VST2SDK_DIR=~/programming/VST_SDK_2.4 ``` --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6ca2ebfc42a..40f253ad62f 100644 --- a/README.md +++ b/README.md @@ -130,3 +130,7 @@ Then restart logic. If everything works and starts up again you can delete the c ## Building - VST2 If you want to build VST2 versions of the plug-in, set the environment variable VST2SDK_DIR to the location of the SDK prior to building. + +An example of setting the environment variable `VST2SDK_DIR` would be: + +```export VST2SDK_DIR=~/programming/VST_SDK_2.4``` From 6a528a41f6d891ef12ca3ae6a158c204f2bcf2a9 Mon Sep 17 00:00:00 2001 From: Esa Juhani Ruoho Date: Tue, 11 Dec 2018 15:28:33 +0200 Subject: [PATCH 2/2] set it before running premake --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 40f253ad62f..f4f04453469 100644 --- a/README.md +++ b/README.md @@ -134,3 +134,5 @@ If you want to build VST2 versions of the plug-in, set the environment variable An example of setting the environment variable `VST2SDK_DIR` would be: ```export VST2SDK_DIR=~/programming/VST_SDK_2.4``` + +***NOTE***: This environment variable needs to be set _before_ running `premake5 xcode4` - which generates projects / and is part of the `build-osx.sh` script.