Skip to content

cross-platform/dspatcher

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build Status Build status

Snap

DSPatcher

Cross-Platform Graphical Tool for DSPatch.

The DSPatcher project is made up of 2 parts:

  1. QtPatcher - A cross-platform circuit drawing library written in Qt C++.
  2. DSPatcher - A graphical tool based on QtPatcher for building DSPatch circuits.

Screenshot

Build

This project requires Qt: 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 ..
make
  • If cmake .. fails, try cmake -D CMAKE_PREFIX_PATH=<path/to/Qt/x.y.z/compiler> ...
  • cmake .. will auto-detect your IDE / compiler. To manually select one, use cmake -G.
  • When building for an IDE, instead of make, simply open the cmake generated project file.

See also:

DSPatch (https://github.com/cross-platform/dspatch): A powerful C++ dataflow framework.

DSPatchables (https://github.com/cross-platform/dspatchables): A DSPatch component repository.