Add ccache support

This commit is contained in:
Berkus Decker 2017-11-22 04:25:21 +02:00 committed by Berkus Decker
parent c0072b0d50
commit 8655950638
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,13 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
endif()
endif()
find_program(CCACHE ccache)
if (CCACHE)
message(STATUS "Enabling ccache")
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
endif()
##======================
## Codegen Tools
##======================