Commit fc2185a7 by Loo Rong Jie

Use absl_ prefix for public target

parent a76ceed6
...@@ -122,7 +122,11 @@ function(absl_cc_library) ...@@ -122,7 +122,11 @@ function(absl_cc_library)
) )
if (NOT ABSL_CC_LIB_TESTONLY OR ABSL_RUN_TESTS) if (NOT ABSL_CC_LIB_TESTONLY OR ABSL_RUN_TESTS)
set(_NAME "absl_internal_${ABSL_CC_LIB_NAME}") if (ABSL_CC_LIB_PUBLIC)
set(_NAME "absl_${ABSL_CC_LIB_NAME}")
else()
set(_NAME "absl_internal_${ABSL_CC_LIB_NAME}")
endif()
# Check if this is a header-only library # Check if this is a header-only library
if (ABSL_CC_LIB_SRCS) if (ABSL_CC_LIB_SRCS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment