1
0
Fork 0

feat: enable sccache

main
mandlm 2023-10-20 10:58:31 +02:00
parent 90f78aa9ea
commit 584d22dece
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
3 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@
# building
gcc
cmake
sccache
# pre-commit
pre-commit

View File

@ -8,6 +8,7 @@ project(
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
include(ExportCompileCommands)
include(sccache)
configure_file("${PROJECT_SOURCE_DIR}/include/version.h.in"
"${PROJECT_BINARY_DIR}/include/version.h")

6
cmake/sccache.cmake Normal file
View File

@ -0,0 +1,6 @@
find_program(SCCACHE_FOUND sccache)
if(SCCACHE_FOUND)
set(CMAKE_C_COMPILER_LAUNCHER sccache)
set(CMAKE_CXX_COMPILER_LAUNCHER sccache)
endif()