Merge pull request #560 from jpcima/update-vst-3.7.1
Update to VST 3.7.1
This commit is contained in:
commit
2eb76defcd
6 changed files with 11 additions and 5 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
|
@ -9,11 +9,11 @@
|
|||
shallow = true
|
||||
[submodule "vst/external/VST_SDK/VST3_SDK/pluginterfaces"]
|
||||
path = vst/external/VST_SDK/VST3_SDK/pluginterfaces
|
||||
url = https://github.com/sfztools/vst3_pluginterfaces.git
|
||||
url = https://github.com/steinbergmedia/vst3_pluginterfaces.git
|
||||
shallow = true
|
||||
[submodule "vst/external/VST_SDK/VST3_SDK/public.sdk"]
|
||||
path = vst/external/VST_SDK/VST3_SDK/public.sdk
|
||||
url = https://github.com/sfztools/vst3_public_sdk.git
|
||||
url = https://github.com/steinbergmedia/vst3_public_sdk.git
|
||||
shallow = true
|
||||
[submodule "vst/external/VST_SDK/VST3_SDK/vstgui4"]
|
||||
path = editor/external/vstgui4
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@
|
|||
set -ex
|
||||
. .travis/docker_container.sh
|
||||
|
||||
# need to convert some includes to lower case (as of VST 3.7.1)
|
||||
find vst/external/VST_SDK -type d -name source -exec \
|
||||
find {} -type f -name '*.[hc]' -o -name '*.[hc]pp' -print0 \; | \
|
||||
xargs -0 sed -i 's/<Windows.h>/<windows.h>/'
|
||||
|
||||
mkdir -p build/${INSTALL_DIR} && cd build
|
||||
if [[ ${CROSS_COMPILE} == "mingw32" ]]; then
|
||||
buildenv i686-w64-mingw32-cmake -DCMAKE_BUILD_TYPE=Release \
|
||||
|
|
|
|||
|
|
@ -242,6 +242,7 @@ elseif(SFIZZ_AU)
|
|||
"${VST3SDK_BASEDIR}/pluginterfaces/base/coreiids.cpp"
|
||||
"${VST3SDK_BASEDIR}/pluginterfaces/base/funknown.cpp"
|
||||
"${VST3SDK_BASEDIR}/pluginterfaces/base/ustring.cpp"
|
||||
"${VST3SDK_BASEDIR}/public.sdk/source/common/commoniids.cpp"
|
||||
"${VST3SDK_BASEDIR}/public.sdk/source/vst/vstinitiids.cpp")
|
||||
|
||||
# Add VST hosting classes
|
||||
|
|
|
|||
2
vst/external/VST_SDK/VST3_SDK/base
vendored
2
vst/external/VST_SDK/VST3_SDK/base
vendored
|
|
@ -1 +1 @@
|
|||
Subproject commit 4f6a7184f20f40a7c940a6717e6e0d8b35eeea63
|
||||
Subproject commit 7b977c031f42a6bab08e8b10f4f8df0a1f516c38
|
||||
2
vst/external/VST_SDK/VST3_SDK/pluginterfaces
vendored
2
vst/external/VST_SDK/VST3_SDK/pluginterfaces
vendored
|
|
@ -1 +1 @@
|
|||
Subproject commit 8c07a58d84c544a73e1ccad2efae200505796773
|
||||
Subproject commit fe202edc93e9a01a1f79a614cc9a292dc9bf3e6e
|
||||
2
vst/external/VST_SDK/VST3_SDK/public.sdk
vendored
2
vst/external/VST_SDK/VST3_SDK/public.sdk
vendored
|
|
@ -1 +1 @@
|
|||
Subproject commit b63097ebce2105845aa97d04808fca4dfd51307c
|
||||
Subproject commit a3a3ed1b1620df0b064564f1fd5423ae110234a0
|
||||
Loading…
Add table
Reference in a new issue