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.
20 lines
759 B
20 lines
759 B
2 years ago
|
include(Platform/Windows-Clang)
|
||
|
set(_COMPILE_HIP_MSVC " -TP")
|
||
|
__windows_compiler_clang(HIP)
|
||
|
|
||
|
if("x${CMAKE_HIP_COMPILER_FRONTEND_VARIANT}" STREQUAL "xMSVC")
|
||
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
||
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
||
|
AND CMAKE_DEPFILE_FLAGS_HIP)
|
||
|
set(CMAKE_HIP_DEPENDS_USE_COMPILER TRUE)
|
||
|
endif()
|
||
|
elseif("x${CMAKE_HIP_COMPILER_FRONTEND_VARIANT}" STREQUAL "xGNU")
|
||
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
||
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
||
|
AND CMAKE_DEPFILE_FLAGS_HIP)
|
||
|
# dependencies are computed by the compiler itself
|
||
|
set(CMAKE_HIP_DEPFILE_FORMAT gcc)
|
||
|
set(CMAKE_HIP_DEPENDS_USE_COMPILER TRUE)
|
||
|
endif()
|
||
|
endif()
|