-
-
Notifications
You must be signed in to change notification settings - Fork 2
Linux Builds
Paul Manias edited this page Apr 28, 2024
·
2 revisions
Your Linux system may require a few package dependencies to be installed if a complete build of Parasol is desired. For an Apt based system such as Debian or Ubuntu, execute the following:
sudo apt-get install libasound2-dev libxrandr-dev libxxf86dga-dev cmake g++ xsltproc
The following will configure the build process:
cmake -S . -B release -DCMAKE_BUILD_TYPE=Release
A full build and install can be performed with:
cmake --build release -j 8 -- -O
sudo cmake --install release
If problems occur at any stage during the build and you suspect an issue in the execution of a command, enable logging of the build process with the --verbose
option.