We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a77fb commit 87c14e7Copy full SHA for 87c14e7
dpctl/tensor/CMakeLists.txt
@@ -311,5 +311,12 @@ foreach(python_module_name ${_py_trgts})
311
# TODO: update source so they refernece individual libraries instead of
312
# dpctl4pybind11.hpp. It will allow to simplify dependency tree
313
target_link_libraries(${python_module_name} PRIVATE DpctlCAPI)
314
+ if (DPCTL_WITH_REDIST)
315
+ set_target_properties(
316
+ ${python_module_name}
317
+ PROPERTIES
318
+ INSTALL_RPATH "$ORIGIN/../../../.."
319
+ )
320
+ endif()
321
install(TARGETS ${python_module_name} DESTINATION "dpctl/tensor")
322
endforeach()
0 commit comments