Files
composable_kernel/codegen/test/rtc/CMakeLists.txt
2024-04-08 22:29:36 +00:00

7 lines
202 B
CMake
Executable File

find_package(hip)
file(GLOB RTC_SOURCES CONFIGURE_DEPENDS src/*.cpp)
add_library(ck_rtc ${RTC_SOURCES})
target_include_directories(ck_rtc PUBLIC include)
target_link_libraries(ck_rtc PUBLIC hip::host)