1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

CMake: add options to disable sccache and ccache if they are found

Signed-off-by: Be <be@mixxx.org>
This commit is contained in:
Be
2021-08-11 18:50:36 -05:00
parent af90feeb13
commit 76c63fa0fc
2 changed files with 20 additions and 7 deletions

View File

@@ -218,6 +218,11 @@ cmake --install build
for Windows and macOS; OFF by default for Linux.
* **VCPKG_ROOT** (file path): path to vcpkg Git repository, defaults to
using the vcpkg submodule in the Tenacity repository
* **SCCACHE** (ON|OFF): whether to use sccache for compiler caching to
speed up rebuilds. ON by default if sccache is installed.
* **CCACHE** (ON|OFF): whether to use ccache for compiler caching to speed
up rebuilds. ON by default if ccache is installed. If sccache and ccache
are both installed, sccache will be prefered.
The following feature options are enabled by default if the required libraries
are found. You may explicitly disable them if you prefer or your distribution