diff options
author | Mike Kruskal <mkruskal@google.com> | 2023-01-24 09:18:25 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-01-24 09:19:28 -0800 |
commit | 20f44782bf1bb87069c43ff3f330e2dc4951a609 (patch) | |
tree | 90272e24533af0de23e69d6729a7b2c4754ba902 /absl/CMakeLists.txt | |
parent | a9bc6fdf382a8875504536f6f4d6a353b0e84dca (diff) |
Include Abseil logging in windows dll, and add a test helper dll.
This was tested with https://github.com/protocolbuffers/protobuf/pull/11623 in Protobuf's windows shared library build.
PiperOrigin-RevId: 504294227
Change-Id: I9657197e649a334585bffa2c7bc6340cd2354e84
Diffstat (limited to 'absl/CMakeLists.txt')
-rw-r--r-- | absl/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/absl/CMakeLists.txt b/absl/CMakeLists.txt index 19a91c62..3a7c12fe 100644 --- a/absl/CMakeLists.txt +++ b/absl/CMakeLists.txt @@ -38,4 +38,7 @@ add_subdirectory(utility) if (${ABSL_BUILD_DLL}) absl_make_dll() + if (${ABSL_BUILD_TEST_HELPERS}) + absl_make_dll(TEST ON) + endif() endif() |