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