diff options
author | wsnipex <wsnipex@a1.net> | 2018-06-11 13:33:41 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2018-06-11 13:33:41 +0200 |
commit | 91e0de19bc55d3306a247116b926dabd0327f413 (patch) | |
tree | ccbc9f948d25104a4e37b96c64d777cfb800d074 /cmake | |
parent | 6a0ad8c27cf8f41a368475c4f7d4ba9602542dc6 (diff) |
[cmake] ffmpeg: remove workaround for ccache, pass the options instead
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/FindFFMPEG.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/modules/FindFFMPEG.cmake b/cmake/modules/FindFFMPEG.cmake index 7f34505bd4..ef74671d40 100644 --- a/cmake/modules/FindFFMPEG.cmake +++ b/cmake/modules/FindFFMPEG.cmake @@ -229,7 +229,9 @@ if(NOT FFMPEG_FOUND) message(STATUS "FFMPEG_URL: ${FFMPEG_URL}") endif() - set(FFMPEG_OPTIONS -DENABLE_VAAPI=${ENABLE_VAAPI} + set(FFMPEG_OPTIONS -DENABLE_CCACHE=${ENABLE_CCACHE} + -DCCACHE_PROGRAM=${CCACHE_PROGRAM} + -DENABLE_VAAPI=${ENABLE_VAAPI} -DENABLE_VDPAU=${ENABLE_VDPAU}) if(KODI_DEPENDSBUILD) |