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 83fd6e2 commit cfdca27Copy full SHA for cfdca27
dpctl/tensor/CMakeLists.txt
@@ -284,5 +284,12 @@ foreach(python_module_name ${_py_trgts})
284
# TODO: update source so they refernece individual libraries instead of
285
# dpctl4pybind11.hpp. It will allow to simplify dependency tree
286
target_link_libraries(${python_module_name} PRIVATE DpctlCAPI)
287
+ if (DPCTL_WITH_REDIST)
288
+ set_target_properties(
289
+ ${python_module_name}
290
+ PROPERTIES
291
+ INSTALL_RPATH "$ORIGIN/../../../.."
292
+ )
293
+ endif()
294
install(TARGETS ${python_module_name} DESTINATION "dpctl/tensor")
295
endforeach()
0 commit comments