avoid building static libs on windows when BUILD_SHARED_LIBS=ON

except all flags_* libraries, for which DLL builds on windows
are not supported

To do this, expand list of ABSL_INTERNAL_DLL_TARGETS; this
is due to how the logic of absl_internal_dll_contains checks
whether additional static libraries should be built, compare
https://github.com/abseil/abseil-cpp/blob/20211102.0/CMake/AbseilHelpers.cmake#L112-L132
pull/1115/head
H. Vetinari 3 years ago
parent 88eee8b511
commit ab3afab813
  1. 9
      CMake/AbseilDll.cmake

@ -382,6 +382,11 @@ set(ABSL_INTERNAL_DLL_TARGETS
"container_common" "container_common"
"container_memory" "container_memory"
"cord" "cord"
"cord_internal"
"cordz_functions"
"cordz_handle"
"cordz_info"
"cordz_sample_token"
"core_headers" "core_headers"
"counting_allocator" "counting_allocator"
"debugging" "debugging"
@ -410,6 +415,7 @@ set(ABSL_INTERNAL_DLL_TARGETS
"layout" "layout"
"leak_check" "leak_check"
"log_severity" "log_severity"
"low_level_hash"
"malloc_internal" "malloc_internal"
"memory" "memory"
"meta" "meta"
@ -424,6 +430,7 @@ set(ABSL_INTERNAL_DLL_TARGETS
"random_bit_gen_ref" "random_bit_gen_ref"
"random_distributions" "random_distributions"
"random_internal_distribution_caller" "random_internal_distribution_caller"
"random_internal_distribution_test_util"
"random_internal_distributions" "random_internal_distributions"
"random_internal_explicit_seed_seq" "random_internal_explicit_seed_seq"
"random_internal_fastmath" "random_internal_fastmath"
@ -459,6 +466,8 @@ set(ABSL_INTERNAL_DLL_TARGETS
"stack_consumption" "stack_consumption"
"stacktrace" "stacktrace"
"status" "status"
"statusor"
"strerror"
"str_format" "str_format"
"str_format_internal" "str_format_internal"
"strings" "strings"

Loading…
Cancel
Save