Collection of C++ audio plugin components and utilities ðŸ§
cortex is a component and utility library based on the JUCE framework that aims to make it
easier to build Black Box Audio plugins.
This library is most often used within other projects, namely plugins and other JUCE applications. To get started, add this library as a submodule to your project:
git submodule add https://github.com/blackboxaudio/cortex lib/cortexAdd the necessary changes to your project's CMakeLists.txt file:
set(CTX_PLUGIN_BUILD ON)
add_subdirectory(lib/cortex)
include_directories(lib/cortex/src)
target_link_libraries(Plugin
PRIVATE
...
cortex)Your project should build successfully while including the cortex library!