Home

Awesome

Senos

Senos is sound exploration tool from a developer point of view.
It is very lightweight, can be used as a toy or a minimal song composer.

Play SetupInstrumentsSequencerChainerAnalyser
PlayInstrumentsSequencerChainerAnalyser

Features

Development

git git@github.com:RuiVarela/Senos.git
cd Senos

mkdir build
cd build

# General
cmake ..
cmake --build .

# To build a Release version on Mac:
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake -DCMAKE_BUILD_TYPE=MinSizeRel ..
cmake --build . -- -j 8

# Build a release version for mac with arm support
cmake -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DCMAKE_BUILD_TYPE=Release .. 
cmake --build . -- -j 8
lipo -archs Senos.app/Contents/MacOS/Senos

# To build a Release version on Windows with the VisualStudio toolchain:
cmake ..
cmake --build . --config Release
cmake --build . --config MinSizeRel

Credits