steinbergmedia / vst3sdk

VST 3 Plug-In SDK
Other
1.59k stars 162 forks source link

Build failure on Linux if $TARGET_DESTINATION does not exist #31

Closed ferdnyc closed 5 years ago

ferdnyc commented 5 years ago

I encountered a build failure on Fedora 29 after the first plugin (adelay) passed its TestSuite run, when the build process attempted to link it into ${TARGET_DESTINATION} (which is ${HOME}/.vst3/ by default), without first ensuring that the directory exists.

PR steinbergmedia/vst3_cmake#1 addresses this issue, by adding a mkdir -p "${TARGET_DESTINATION}" prior to the ln -sfF command.

ferdnyc commented 5 years ago

Closed via steinbergmedia/vst3_cmake#1 .