hvcc icon indicating copy to clipboard operation
hvcc copied to clipboard

VST doc incorrect

Open awdio opened this issue 5 years ago • 1 comments

The instructions say to download the VST3 Audio Plugins SDK from Steinberg, and some of the folder that is supposed to be copied over does not exist within the zip nor do any of the files exist individually anywhere:

/pluginterfaces
      /vst2.x
          aeffect.h
          aeffectx.h
          vstfxstore.h

Also the building instructions seems to have been copied over from the Unity instructions:

MacOS An Xcode project exists in the unity/xcode directory and the plugin may be built manually. It can also be compiled directly from the commandline.

$ cd unity/xcode
$ xcodebuild -project heavy.xcodeproj -arch x86_64 -alltargets

The results are placed in unity/build/macos/x86_64/Release.

Linux

$ cd unity/linux
$ make -j

The results are placed in unity/build/linux/x86_64/release.

Windows A Visual Studio 2015 project exists in the unity/vs2015 directory and the plugin may be built manually. It can also be compiled directly from the commandline.

$ cd unity/vs2015
$ "C:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe" /property:Configuration=Release /property:Platform=x64 /t:Rebuild heavy.sln /m

The results are placed in unity/build/win/x64/Release.

Plugins for x86 may also be built by specifying /property:Platform=x86.

awdio avatar Dec 08 '20 16:12 awdio

It is anyway quite a pain to piece together the old sdk from archive.org and put it in place.

In my fork I've changed the VST2 build to instead use DPF, which means we can now build LV2 and VST2 without any other (deprecated) dependencies.

Just need a simple git clone into your target dir and you're done.

dromer avatar Apr 17 '21 17:04 dromer