You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Make sure that shared debug info doesn't intefere with caching
# See the sccache readme
if(
MSVC
AND (NOT DEFINED CMAKE_MSVC_DEBUG_INFORMATION_FORMAT)
AND (
CMAKE_C_COMPILER_LAUNCHER MATCHES "ccache"
OR CMAKE_CXX_COMPILER_LAUNCHER MATCHES "ccache"
)
)
message(
NOTICE
"Setting embedded debug info for MSVC to work around (s)ccache's inability to cache shared debug info files, Note that this requires CMake 3.25 or greater"