SWDEV-478295 - Link with hiprtc-builtins for sample 23_cmake_hiprtc in static build

Change-Id: I9ccc1310ea2f38d8624103e198b6fc1077712345


[ROCm/hip-tests commit: e45cbdfaa1]
Этот коммит содержится в:
Ioannis Assiouras
2024-08-08 14:56:46 +01:00
родитель 4ea6eb80a1
Коммит 47ae5e353e
+5 -1
Просмотреть файл
@@ -46,10 +46,14 @@ endif()
add_executable(test ${EXCLUDE_OPTION} saxpy.cpp)
# Link with HIPRTC
target_link_libraries(test hiprtc::hiprtc)
target_link_libraries(test hiprtc)
# Link with HIP
target_link_libraries(test hip::device)
if(NOT BUILD_SHARED_LIBS)
target_link_libraries(test hiprtc-builtins)
endif()
target_include_directories(test PRIVATE ../../common)
if(TARGET build_cookbook)