mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-27 00:14:40 -07:00
Do not enable ccache by default
This commit is contained in:
parent
2ff26aa3b1
commit
a09d68a8df
1 changed files with 9 additions and 9 deletions
|
|
@ -8,20 +8,20 @@
|
||||||
# cmake 3.16 is required if using qt6
|
# cmake 3.16 is required if using qt6
|
||||||
cmake_minimum_required(VERSION 3.10)
|
cmake_minimum_required(VERSION 3.10)
|
||||||
|
|
||||||
# Early detect ccache
|
# Use compiler cache (ccache)
|
||||||
option(USE_CCACHE "Cache the build results with ccache" ON)
|
option(USE_CCACHE "Cache the build results with ccache" OFF)
|
||||||
# Treat warnings as errors (Debug builds only)
|
# Treat warnings as errors (Debug builds only)
|
||||||
option(WARNING_AS_ERROR "Treat warnings as errors in debug builds" ON)
|
option(WARNING_AS_ERROR "Treat warnings as errors in debug builds" ON)
|
||||||
# Check for translation updates
|
# Check for translation updates
|
||||||
option(UPDATE_TRANSLATIONS "Update translations on compile" OFF)
|
option(UPDATE_TRANSLATIONS "Update translations on compile" OFF)
|
||||||
# Compile servatrice
|
# Compile Cockatrice
|
||||||
option(WITH_SERVER "build servatrice" OFF)
|
option(WITH_CLIENT "Build Cockatrice client" ON)
|
||||||
# Compile cockatrice
|
# Compile Oracle
|
||||||
option(WITH_CLIENT "build cockatrice" ON)
|
option(WITH_ORACLE "Build Cockatrice card database tool (Oracle)" ON)
|
||||||
# Compile oracle
|
# Compile Servatrice
|
||||||
option(WITH_ORACLE "build oracle" ON)
|
option(WITH_SERVER "Build Cockatrice server (Servatrice)" OFF)
|
||||||
# Compile tests
|
# Compile tests
|
||||||
option(TEST "build tests" OFF)
|
option(TEST "Build tests" OFF)
|
||||||
# Use vcpkg regardless of OS
|
# Use vcpkg regardless of OS
|
||||||
option(USE_VCPKG "Use vcpkg regardless of OS" OFF)
|
option(USE_VCPKG "Use vcpkg regardless of OS" OFF)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue