Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeOnly/CheckLanguageHIPPlatform2/CMakeLists.txt
3153 views
1
cmake_minimum_required (VERSION 3.28)
2
project(CheckLanguageHIPPlatform2 NONE)
3
include(CheckLanguage)
4
5
set(CMAKE_HIP_PLATFORM "not-a-hip-platform" CACHE STRING "")
6
check_language(HIP)
7
8
if(NOT DEFINED CMAKE_HIP_COMPILER)
9
message(FATAL_ERROR "check_language did not set result")
10
endif()
11
12
if (CMAKE_HIP_COMPILER)
13
message(FATAL_ERROR "check_language should have failed")
14
endif()
15
16