mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 05:17:44 -07:00
a1c54063d0
When we are using ccache anyway, always add the flags to make clang happy. Also, fix copy-paste error regarding what variable to modify for it.
18 lines
744 B
CMake
18 lines
744 B
CMake
find_program(CCACHE_BIN NAMES ccache sccache)
|
|
if(CCACHE_BIN)
|
|
# Official ccache recommendation is to set CMAKE_C(XX)_COMPILER_LAUNCHER
|
|
if (NOT CMAKE_C_COMPILER_LAUNCHER MATCHES "ccache")
|
|
list(INSERT CMAKE_C_COMPILER_LAUNCHER 0 "${CCACHE_BIN}")
|
|
endif()
|
|
|
|
if (NOT CMAKE_CXX_COMPILER_LAUNCHER MATCHES "ccache")
|
|
list(INSERT CMAKE_CXX_COMPILER_LAUNCHER 0 "${CCACHE_BIN}")
|
|
endif()
|
|
|
|
# ccache uses -I when compiling without preprocessor, which makes clang complain.
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Qunused-arguments -fcolor-diagnostics")
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Qunused-arguments -fcolor-diagnostics")
|
|
endif()
|
|
endif()
|