boringssl/crypto/pkcs7/CMakeLists.txt
David Benjamin 378a08aa31 Add PKCS7_get_raw_certificates.
This is a version of PKCS7_get_certificates but does not require
crypto/x509.

BUG=54

Change-Id: I20152a8d1f3ed866d47e41fe576ea9f442490224
Reviewed-on: https://boringssl-review.googlesource.com/15129
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
2017-04-19 17:30:31 +00:00

22 lines
258 B
CMake

include_directories(../../include)
add_library(
pkcs7
OBJECT
pkcs7.c
pkcs7_x509.c
)
add_executable(
pkcs7_test
pkcs7_test.c
$<TARGET_OBJECTS:test_support>
)
target_link_libraries(pkcs7_test crypto)
add_dependencies(all_tests pkcs7_test)