This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.16) | |
project(example LANGUAGES CXX) | |
find_package(hip REQUIRED) | |
add_executable(example main.cpp) | |
target_link_libraries(example PRIVATE hip::device) |