Cross-Platform Graphical Tool for DSPatch.
The DSPatcher project is made up of 2 parts:
- QtPatcher - A cross-platform circuit drawing library written in Qt C++.
- DSPatcher - A graphical tool based on QtPatcher for building DSPatch circuits.
This project requires Qt5: https://www.qt.io/download
git clone https://github.com/cross-platform/dspatcher.git
cd dspatcher
git submodule update --init --recursive --remote
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release
- If
cmake
fails, try adding-DCMAKE_PREFIX_PATH=<path/to/Qt/x.y.z/compiler>
. cmake
will auto-detect your IDE / compiler. To manually select one, usecmake -G
.- When building for an IDE, instead of
cmake --build
, simply open the cmake generated project file.
DSPatch (https://github.com/cross-platform/dspatch): A powerful C++ dataflow framework.
DSPatchables (https://github.com/cross-platform/dspatchables): A DSPatch component repository.