mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
ce9c6d0994
Fixes: #25541
15 lines
378 B
CMake
15 lines
378 B
CMake
cmake_minimum_required (VERSION 3.28)
|
|
project(CheckLanguageHIPPlatform2 NONE)
|
|
include(CheckLanguage)
|
|
|
|
set(CMAKE_HIP_PLATFORM "not-a-hip-platform" CACHE STRING "")
|
|
check_language(HIP)
|
|
|
|
if(NOT DEFINED CMAKE_HIP_COMPILER)
|
|
message(FATAL_ERROR "check_language did not set result")
|
|
endif()
|
|
|
|
if (CMAKE_HIP_COMPILER)
|
|
message(FATAL_ERROR "check_language should have failed")
|
|
endif()
|