6e96eaebe0
This function is a deprecated version of |X509_EXT_nconf_nid| that takes a hash of |CONF_VALUE|s directly rather than a |CONF|. Change-Id: I5fd1025b31d73b988d9298b2624453017dd34ff4 Reviewed-on: https://boringssl-review.googlesource.com/7363 Reviewed-by: David Benjamin <davidben@google.com>
26 lines
541 B
CMake
26 lines
541 B
CMake
add_subdirectory(bio)
|
|
add_subdirectory(blowfish)
|
|
add_subdirectory(cast)
|
|
add_subdirectory(des)
|
|
add_subdirectory(dsa)
|
|
add_subdirectory(evp)
|
|
add_subdirectory(rsa)
|
|
add_subdirectory(x509)
|
|
add_subdirectory(xts)
|
|
|
|
add_library(
|
|
decrepit
|
|
|
|
$<TARGET_OBJECTS:bio_decrepit>
|
|
$<TARGET_OBJECTS:blowfish>
|
|
$<TARGET_OBJECTS:cast>
|
|
$<TARGET_OBJECTS:des_decrepit>
|
|
$<TARGET_OBJECTS:dsa_decrepit>
|
|
$<TARGET_OBJECTS:evp_decrepit>
|
|
$<TARGET_OBJECTS:rsa_decrepit>
|
|
$<TARGET_OBJECTS:x509>
|
|
$<TARGET_OBJECTS:xts>
|
|
)
|
|
|
|
target_link_libraries(decrepit crypto)
|