2013-03-16 19:13:01 +02:00
|
|
|
include(Platform/Windows-MSVC)
|
|
|
|
set(_COMPILE_CXX " /TP")
|
2013-11-07 00:51:16 +02:00
|
|
|
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0)
|
|
|
|
set(_FS_CXX " /FS")
|
|
|
|
endif()
|
2013-03-16 19:13:01 +02:00
|
|
|
__windows_compiler_msvc(CXX)
|
2021-09-14 00:13:48 +02:00
|
|
|
|
|
|
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
|
|
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
|
|
|
AND CMAKE_DEPFILE_FLAGS_CXX)
|
|
|
|
# dependencies are computed by the compiler itself
|
|
|
|
set(CMAKE_CXX_DEPENDS_USE_COMPILER TRUE)
|
|
|
|
endif()
|