Skip to content

Commit

Permalink
fix COMPILER_CACHE_EXECUTABLE value when compiling with MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
vigsterkr committed Mar 7, 2018
1 parent d789b17 commit 2ae035a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -75,7 +75,7 @@ if (ENABLE_COMPILER_CACHE)
if (MSVC)
find_program(CLCACHE_FOUND clcache)
if (CLCACHE_FOUND)
set(COMPILER_CACHE_EXECUTABLE CLCACHE_FOUND)
set(COMPILER_CACHE_EXECUTABLE ${CLCACHE_FOUND})
endif ()
else()
FIND_PACKAGE(CCache)
Expand Down

0 comments on commit 2ae035a

Please sign in to comment.