You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
254 B

cmake_minimum_required(VERSION 3.18)
project(CompileFlags HIP)
add_executable(HIPOnlyCompileFlags main.hip)
set_property(TARGET HIPOnlyCompileFlags PROPERTY HIP_ARCHITECTURES gfx803)
target_compile_options(HIPOnlyCompileFlags PRIVATE -DALWAYS_DEFINE)