Skip to content

Collection of C++ audio plugin components and utilities 🧠

License

Notifications You must be signed in to change notification settings

blackboxaudio/cortex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

About

Collection of C++ audio plugin components and utilities 🧠

Resources

License

Stars

Watchers

Forks

Releases

No releases published