Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.18 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.18 KB

cortex

Build cortex: v0.1.0 License

Collection of JUCE plugin components and utilities 🧠

Overview

cortex is a component and utility library based on the JUCE framework that aims to make it easier to build Black Box Audio plugins.

Getting Started

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/cortex

Add 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!