Skip to content

Commit

Permalink
iox-eclipse-iceoryx#1287 Do not set rpath until it is cleanly impleme…
Browse files Browse the repository at this point in the history
…nted

Signed-off-by: Christian Eltzschig <me@elchris.org>
  • Loading branch information
elfenpiff committed May 31, 2022
1 parent 99ea6f9 commit f49bc0b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions iceoryx_hoofs/cmake/IceoryxPackageHelper.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ Macro(iox_add_executable)
target_link_libraries(${IOX_TARGET} ${IOX_LIBS_UNIX})
endif()

iox_set_rpath( IS_EXECUTABLE TARGET ${IOX_TARGET} )
# TODO iox-#1287 lasting fix for rpath without implicit posh dependencies
# and auto lib detection
### iox_set_rpath( IS_EXECUTABLE TARGET ${IOX_TARGET} )

if ( IOX_PLACE_IN_BUILD_ROOT )
set_target_properties(${IOX_TARGET} PROPERTIES
Expand Down Expand Up @@ -352,7 +354,9 @@ Macro(iox_add_library)
target_link_libraries(${IOX_TARGET} PUBLIC ${IOX_PUBLIC_LIBS_WIN32} PRIVATE ${IOX_PRIVATE_LIBS_WIN32})
endif ( LINUX )

iox_set_rpath( TARGET ${IOX_TARGET} )
# TODO iox-#1287 lasting fix for rpath without implicit posh dependencies
# and auto lib detection
### iox_set_rpath( TARGET ${IOX_TARGET} )

foreach(INTERFACE ${IOX_BUILD_INTERFACE})
target_include_directories(${IOX_TARGET}
Expand Down

0 comments on commit f49bc0b

Please sign in to comment.