How can you compile VST 3 or Audio Units with the command line?

天涯浪子 提交于 2020-01-03 04:34:08

问题


I would like to make an audio plugin, as either an Audio Unit or a VST 3. However, compiling plugins under both frameworks seems to be a very heavyweight process for which only XCode or Visual Studio project files are provided as examples. Is there an example of a barebones build that compiles using a Makefile or CMake script?


回答1:


You can always look at the flags that Xcode uses and provide them to gcc with CMake. However, the actual build process generally takes much more time than the build tool and dependency analyzer itself. C++ compilers in particular are known to be quite slow.



来源:https://stackoverflow.com/questions/12996027/how-can-you-compile-vst-3-or-audio-units-with-the-command-line

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!