File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -486,6 +486,7 @@ endif()
486
486
set (ABSL_INTERNAL_DLL_TARGETS
487
487
"absl_check"
488
488
"absl_log"
489
+ "absl_vlog_is_on"
489
490
"algorithm"
490
491
"algorithm_container"
491
492
"any"
@@ -643,6 +644,7 @@ set(ABSL_INTERNAL_DLL_TARGETS
643
644
"utility"
644
645
"variant"
645
646
"vlog_config_internal"
647
+ "vlog_is_on"
646
648
)
647
649
648
650
if (NOT MSVC )
Original file line number Diff line number Diff line change @@ -258,6 +258,13 @@ Cflags: -I\${includedir}${PC_CFLAGS}\n")
258
258
elseif (_build_type STREQUAL "static" OR _build_type STREQUAL "shared" )
259
259
add_library (${_NAME} "" )
260
260
target_sources (${_NAME} PRIVATE ${ABSL_CC_LIB_SRCS} ${ABSL_CC_LIB_HDRS} )
261
+ if (APPLE )
262
+ set_target_properties (${_NAME} PROPERTIES
263
+ INSTALL_RPATH "@loader_path" )
264
+ elseif (UNIX )
265
+ set_target_properties (${_NAME} PROPERTIES
266
+ INSTALL_RPATH "$ORIGIN" )
267
+ endif ()
261
268
target_link_libraries (${_NAME}
262
269
PUBLIC ${ABSL_CC_LIB_DEPS}
263
270
PRIVATE
You can’t perform that action at this time.
0 commit comments