7 lines
147 B
CMake
7 lines
147 B
CMake
|
find_program(SCCACHE_FOUND sccache)
|
||
|
|
||
|
if(SCCACHE_FOUND)
|
||
|
set(CMAKE_C_COMPILER_LAUNCHER sccache)
|
||
|
set(CMAKE_CXX_COMPILER_LAUNCHER sccache)
|
||
|
endif()
|