Self-owned backup fork of sfztools/sfizz (archived upstream 2025). Buildable snapshot in R2/archive.
Find a file
2019-09-22 16:03:21 +02:00
.travis Fix Travis OSX build (libsndfile). 2019-09-22 01:20:53 +02:00
benchmarks cleanups 2019-09-21 13:01:50 +02:00
clients Added an external header library for filesystem that defaults to the standard library on cpp 17 and finished cleaning up the c++14 issues 2019-09-21 14:12:02 +02:00
external updated submodules 2019-09-21 14:23:31 +02:00
scripts Added a script to change the sample names in an existing file that assumes case-insensitivity. 2019-09-22 02:12:52 +02:00
sfizz Removed the leak detector for cpp < 17 2019-09-22 16:03:09 +02:00
tests Added an external header library for filesystem that defaults to the standard library on cpp 17 and finished cleaning up the c++14 issues 2019-09-21 14:12:02 +02:00
.editorconfig Added EditorConfig support. 2019-09-19 02:20:52 +02:00
.gitignore Added QtCreator CMake project files to .gitignore. 2019-09-18 09:15:37 +02:00
.gitmodules Tracking Abseil's LTS 2019-09-21 15:13:59 +02:00
.travis.yml Added github.com/DiscordHooks/travis-ci-discord-webhook. 2019-09-21 17:43:01 +02:00
CMakeLists.txt Fix Travis OSX build (libsndfile). 2019-09-22 01:20:53 +02:00
LICENSE.md Create LICENSE.md 2019-08-30 00:53:38 +02:00
README.md Revert Travis hack. 2019-09-18 11:28:09 +02:00

sfizz

Travis Build Status

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++.