aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2023-11-17 15:28:40 -0500
committerBoringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-11-21 00:07:12 +0000
commitaa533e0bdf75d91039511e4ec3b82068b207ff75 (patch)
tree76fc5ec6d1e7b4d8abffd5647f0c07b9e26f70fb /CMakeLists.txt
parenta4851dd8c67a2b311403d67270e02e7296d31157 (diff)
downloadboringssl-aa533e0bdf75d91039511e4ec3b82068b207ff75.zip
boringssl-aa533e0bdf75d91039511e4ec3b82068b207ff75.tar.gz
boringssl-aa533e0bdf75d91039511e4ec3b82068b207ff75.tar.bz2
Remove the _BORINGSSL_LIBPKI_ defines
Now that this is the source of truth, this isn't really doing anything. Update-Note: _BORINGSSL_LIBPKI_ in build files can be removed. Bug: 658 Change-Id: I6daacf692bf4bf51d9822d1b91237625b83d7849 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/64027 Auto-Submit: David Benjamin <davidben@google.com> Commit-Queue: Bob Beck <bbe@google.com> Reviewed-by: Bob Beck <bbe@google.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ee5cc04..2c2eb88 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -563,11 +563,9 @@ if(APPLE)
endif()
add_library(pki ${PKI_SOURCES})
-target_compile_definitions(pki PRIVATE _BORINGSSL_LIBPKI_)
target_link_libraries(pki crypto)
add_executable(pki_test ${PKI_TEST_SOURCES})
-target_compile_definitions(pki_test PRIVATE _BORINGSSL_LIBPKI_)
target_link_libraries(pki_test test_support_lib boringssl_gtest pki crypto)
add_dependencies(all_tests pki_test)