mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-23 21:51:02 +00:00
9 lines
171 B
CMake
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()
|