You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
273 B
7 lines
273 B
if(MSVC)
|
|
# https://github.com/mozilla/sccache/issues/242
|
|
if(CMAKE_CXX_COMPILER_LAUNCHER STREQUAL "sccache")
|
|
string(REGEX REPLACE "/Z[iI7]" "" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Z7")
|
|
endif()
|
|
endif()
|
|
|