Files
windows-user-space-emulator/cmake/sccache.cmake
2025-05-29 09:58:51 +02:00

9 lines
171 B
CMake

include_guard()
find_program(SCCACHE sccache)
if (SCCACHE)
set(CMAKE_C_COMPILER_LAUNCHER ${SCCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${SCCACHE})
endif()