- python3 >= 3.5
- cmake >= 3.16
- A working C++17 compiler
On Windows, please use the prebuilt binaries.
On macOS, the easiest way to install CMake is brew install cmake
.
On Linux, cmake
is usually available from the system package manager.
We build Sneedacity using Microsoft Visual Studio 2019. In order to build Sneedacity Desktop development with C++ workload is required.
As we require only C++14 - MSVC 2017 should work just fine too.
We build Sneedacity using XCode 12. However, it is likely possible to build it with XCode 7.
We use GCC 9, but any C++14 compliant compiler should work.
On Debian or Ubuntu, you can install everything required using the following commands:
$ sudo apt-get update
$ sudo apt-get install -y build-essential cmake git python3-pip
$ sudo apt-get install libgtk2.0-dev libasound2-dev libavformat-dev libjack-jackd2-dev uuid-dev
-
Clone Sneedacity from the Sneedacity GitHub project.
For example, in the git-bash run:
$ git clone https://github.com/formerlychuck/sneedacity/
-
Open CMake GUI.
Set the Where is the source code to the location where Sneedacity was cloned.
Set Where to build the binaries to the location you want to place your build in. It is preferred that this location is not within the directory with the source code.
-
Press Configure. You can choose which version of Visual Studio to use and the platform to build for in the pop-up. We support x64 and Win32 platforms. The x64 platform is a default option. Press Finish to start the configuration process.
-
After successful configuration, you will see
Configuring done
in the last line of the log. Press Generate to generate the Visual Studio project. -
After you see "Generating done", press Open Project to open the project in Visual Studio.
-
Select "Build -> Build Solution".
-
You can now run and debug Sneedacity!
Generally, steps 1-5 are only needed the first-time you configure. Then, after you've generated the solution, you can open it in Visual Studio next time. If the project configuration has changed, the IDE will invoke CMake internally.
-
Clone Sneedacity from the Sneedacity GitHub project.
$ git clone https://github.com/formerlychuck/sneedacity/
-
Configure Sneedacity using CMake:
$ mkdir build && cd build $ cmake -GXcode -T buildsystem=1 ../sneedacity
-
Open Sneedacity XCode project:
$ open Sneedacity.xcodeproj
and build Sneedacity using the IDE.
Steps 1 and 2 are only required for first-time builds.
Alternatively, you can use CLion. If you chose to do so, open the directory where you have cloned Sneedacity using CLion and you are good to go.
At the moment we only support x86_64 builds. It is possible to build using AppleSilicon hardware but mad and id3tag should be disabled:
cmake -GXCode -T buildsystem=1 -Dsneedacity_use_mad="off" -Dsneedacity_use_id3tag=off ../sneedacity
Note: only Debian and Ubuntu are officially supported.
-
Clone Sneedacity from the Sneedacity GitHub project.
$ git clone https://github.com/Sneeds-Feed-and-Seed/sneedacity/
-
Configure Sneedacity using CMake:
$ mkdir build && cd build $ cmake -G "Unix Makefiles" -Dsneedacity_use_ffmpeg=loaded ../sneedacity
By default, Debug build will be configured. To change that, pass
-DCMAKE_BUILD_TYPE=Release
to CMake. -
Build Sneedacity:
$ make -j`nproc`
-
Testing the build: Adding a "Portable Settings" folder allows Sneedacity to ignore the settings of any existing Sneedacity installation.
$ cd bin/Debug $ mkdir "Portable Settings" $ ./sneedacity
-
Installing Sneedacity
$ cd <build directory> $ sudo make install
You can use cmake -LH
to get a list of the options available (or use CMake GUI or ccmake
). The list will include documentation about each option. For convenience, here is a list of the most notable options.
On Linux it is possible to build Sneedacity using (almost) only the libraries provided by the package manager. Please, see the list of required libraries here.
$ mkdir build && cd build
$ cmake -G "Unix Makefiles" \
-Dsneedacity_use_ffmpeg=loaded \
-Dsneedacity_lib_preference=system \
-Dsneedacity_obey_system_dependencies=On \
../sneedacity
There are a few cases when the local library build is preferred:
- wxWidgets: While Sneedacity on Linux uses vanilla version of wxWidgets, we require that version 3.1.3 is used. This version is not available in most of the distributions.
- portaudio-v19: Sneedacity currently uses some private APIs, so using system portaudio is not yet possible.
- vamp-host-sdk: Development packages are not available in Ubuntu 20.04.
- libnyquist & portmixer: Libraries are not available in Ubuntu 20.04.
- sqlite3 & libsmbs: Libraries are very outdated in Ubuntu 20.04.
It is not advised to mix system and local libraries, except for the list above. ZLib
is a very common dependency; it is possible to mix system and local libraries in one build. However, we advise against doing so.
There is a Dockerfile
that can be used as an example of how to build Sneedacity using system libraries:
$ docker build -t sneedacity_linux_env .\linux\build-environment\
$ docker run --rm -v ${pwd}:/sneedacity/sneedacity/ -v ${pwd}/../build/linux-system:/sneedacity/build -it sneedacity_linux_env
To find system packages, we rely on pkg-config
. There are several packages that have broken *.pc
or do not use pkg-config
at all. For the docker image - we handle this issue by installing the correct pc
files.
This is an alternative build method meant to, in the future, unify the build process on all the supported platforms and the CI/CD pipeline on Github. At the moment though, it only works/was tested on Linux, and might cause a bug that prevents Sneedacity from detecting audio devices, so more testing is needed before this becomes the official method of building.
How to build:
#Install the required packages
apt-get install libxss-dev libxxf86vm-dev libxkbfile-dev libxv-dev pkg-config libgtk2.0-dev libgtk2.0-dev libasound2-dev libavformat-dev libjack-jackd2-dev uuid-dev build-essential cmake git python3-pip
#Note that you might need to remove the cmake package and install it from the cmake webpage because the build process requires a quite recent version.
cd ~
git clone https://github.com/Sneeds-Feed-and-Seed/sneedacity
mkdir sneedacity_build
mkdir sneedacity_install
cd sneedacity_build
~/sneedacity/scripts/build/configure.sh ~/sneedacity_install
~/sneedacity/scripts/build/build.sh
~/sneedacity/scripts/build/install.sh
How to debug the build process:
Add
> out.txt 2>&1
to the end of the failing command.
Then grep the out.txt file for "CMake Error" or "error:".