diff options
author | wsnipex <wsnipex@a1.net> | 2016-12-19 14:51:51 +0100 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2016-12-22 11:08:13 +0100 |
commit | 62093dd7013585d97a6a4b195b45a4661d884ed1 (patch) | |
tree | ee0c4024af2d5e98d64fba964970c08305ff2f1c /project | |
parent | d43f9944b2f6ac9c9c5598f9f36210feeb4cafc0 (diff) |
[cmake] libcec and ccache are optional deps
Diffstat (limited to 'project')
-rw-r--r-- | project/cmake/CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/project/cmake/CMakeLists.txt b/project/cmake/CMakeLists.txt index 46df299e46..c0571db24b 100644 --- a/project/cmake/CMakeLists.txt +++ b/project/cmake/CMakeLists.txt @@ -43,7 +43,6 @@ option(ENABLE_DVDCSS "Enable libdvdcss support?" ON) option(ENABLE_UPNP "Enable UPnP support?" ON) option(ENABLE_NONFREE "Enable non-free components?" ON) option(ENABLE_AIRTUNES "Enable AirTunes support?" ON) -option(ENABLE_CEC "Enable CEC support?" ON) option(ENABLE_OPTICAL "Enable optical support?" ON) # use ffmpeg from depends or system option(ENABLE_INTERNAL_FFMPEG "Enable internal ffmpeg?" OFF) @@ -61,7 +60,6 @@ endif() if(NOT WIN32) option(WITH_ARCH "build with given arch" OFF) option(WITH_CPU "build with given cpu" OFF) - option(ENABLE_CCACHE "Enable Ccache support" ON) endif() if(CORE_SYSTEM_NAME STREQUAL linux OR CORE_SYSTEM_NAME STREQUAL rbpi) option(ENABLE_LIRC "Enable LIRC support?" ON) @@ -117,7 +115,7 @@ endif() # Optional dependencies set(optional_deps MicroHttpd MySqlClient SSH XSLT - Alsa UDEV DBus Avahi SmbClient + Alsa UDEV DBus Avahi SmbClient CCache PulseAudio VDPAU VAAPI Bluetooth CAP) # Required, dyloaded deps @@ -217,9 +215,6 @@ elseif(CORE_SYSTEM_NAME STREQUAL rbpi) core_require_dep(MMAL) endif() -if(ENABLE_CCACHE) - core_optional_dep(CCache) -endif() # Compile Info add_custom_command(OUTPUT ${CORE_BUILD_DIR}/xbmc/CompileInfo.cpp |