8 lines
244 B
CMake
8 lines
244 B
CMake
option(USE_CCACHE "Use ccache to speed up compilation if it is installed" ON)
|
|
if(USE_CCACHE)
|
|
find_program(CCACHE_PROGRAM ccache)
|
|
if(CCACHE_PROGRAM)
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
|
|
endif()
|
|
endif()
|