monadgroup / axiom
- суббота, 3 ноября 2018 г. в 00:15:54
C++
A powerful realtime node-based audio synthesizer.
A synth built in the current version of Axiom
Axiom is an extremely flexible node-based realtime audio synthesizer. It was originally designed for size-constrained environments such as PC intros in the demoscene, but is entirely open source and is becoming an excellent free tool for any musician.
Features:
There are currently pre-packaged versions available for Windows and macOS (alpha, let us know of any issues) on the Releases page. Stay tuned for Linux builds!
Usage Guide · Example Projects · Release Notes
Axiom currently supports the following audio backends:
Axiom is built with CMake. The build process depends on Cargo, Qt 5.10 or 5.11, LLVM 6, and the VST 2 SDK (for the VST2 backend), so make sure those are installed and setup correctly.
Once Cargo, Qt, LLVM, and the VST SDK are installed, go to the directory where you'd like to build Axiom to. Then run the following command:
cmake ../path/to/source -DVST2_SDK_ROOT=/path/to/vst/sdk
If you want to build it statically-linked, pass the AXIOM_STATIC_LINK
flag:
cmake ../path/to/source -DAXIOM_STATIC_LINK=ON -DVST2_SDK_ROOT=/path/to/vst/sdk
CMake will setup files necessary for building. If this fails, make sure you've got Cargo, Qt, LLVM, and the VST SDK installed correctly. Once complete, you can choose which backend to build:
To build the VST2 instrument backend, use the following command. You will need to specify a path to the VST2 SDK. You can also build the VST2 effect with the axiom_vst2_effect
target.
cmake --build ./ --target axiom_vst2_instrument
To build the standalone version as an executable, use the following command. In order to enable audio output in this version, the PortAudio library must be installed. You can still use the standalone editor without it, the graph just won't be simulated.
cmake --build ./ --target axiom_standalone
Axiom is comprised of several components:
Licensed under the MIT license. See the LICENSE file in the repository for more details.