Self-owned backup fork of sfztools/sfizz (archived upstream 2025). Buildable snapshot in R2/archive.
Find a file
2019-09-21 10:33:29 +02:00
.travis Added Travis CI configuration. 2019-09-21 10:33:29 +02:00
benchmarks Added a "diff" SIMD helper, and some more benchmarking... 2019-09-15 21:14:02 +02:00
clients Implicit construction in the jack client 2019-09-17 14:52:27 +02:00
external Sanitize a bit the submodules and make 3 of them in-tree; abseil and google benchmark left 2019-09-18 00:14:08 +02:00
scripts Added a reldeb helper script 2019-09-16 16:05:55 +02:00
sfizz Tooling updates; requires a higher cmake version in abseil and co... 2019-09-21 01:33:03 +02:00
tests Yet some more tooling updates 2019-09-21 01:43:04 +02:00
.gitignore Added QtCreator CMake project files to .gitignore. 2019-09-21 10:33:29 +02:00
.gitmodules Sanitize a bit the submodules and make 3 of them in-tree; abseil and google benchmark left 2019-09-18 00:14:08 +02:00
.travis.yml Added Travis CI configuration. 2019-09-21 10:33:29 +02:00
CMakeLists.txt added the cmake switch 2019-09-21 10:29:16 +02:00
LICENSE.md Create LICENSE.md 2019-08-30 00:53:38 +02:00
README.md Added Travis CI configuration. 2019-09-21 10:33:29 +02:00

sfizz

Travis AppVeyor

Building

Sfizz depends on the sndfile library. The Jack client that you will probably build depends on the jack library. To build sfizz you need to install both as shared libraries on the system. In Debian-based distributions, this translates into

sudo apt install libjack-jackd2-dev libsndfile1-dev

The process is as follows:

  1. Clone the repository with all the submodules
  2. Create a build directory for CMake and cd into it
  3. Prep the Makefiles with the SFIZZ_CLIENTS option
  4. Build
  5. Enjoy :)

In the shell world, this means

git clone --recursive https://github.com/paulfd/sfizz.git
cd sfizz
mkdir build && cd build
cmake -D CMAKE_BUILD_TYPE=Release -D SFIZZ_CLIENTS=ON ..
make

You can then find the Jack client in clients/sfizz_jack. Just specify an .sfz file as a parameter and you are good to go. The client will forcefully connect to the system output, and open an event input in Jack for you to connect a midi capable software or hardware (e.g. jack-keyboard). If no Jack server is already started it will start one with basic options.

Possible pitfalls and alternatives

If you already cloned the repository without the --recursive option, update the submodules manually with

git submodule update --init --recursive

You can build with clang, although in that case the CMakeFile defaults to using libc++ instead of libstdc++.