cmake/Tests/HIP/InferHipLang1/CMakeLists.txt
2021-09-14 00:13:48 +02:00

13 lines
494 B
CMake

cmake_minimum_required(VERSION 3.18)
project(InferHipLang C CXX HIP)
#Goal for this example:
#make sure that we understand that HIP is the correct link language
add_library(InterfaceWithHIP INTERFACE)
target_sources(InterfaceWithHIP INTERFACE interface.hip main.cxx)
target_compile_features(InterfaceWithHIP INTERFACE hip_std_14)
target_compile_features(InterfaceWithHIP INTERFACE cxx_std_11)
add_executable(HIPInferHipLang1 )
target_link_libraries(HIPInferHipLang1 PRIVATE InterfaceWithHIP)