bfb38b1a3c
I've no idea who thought that this function was a good idea in the first place, but including it in decrepit makes supporting nmap easier. Change-Id: I7433cda6a6ddf1cc545126edf779625e9fc70ada Reviewed-on: https://boringssl-review.googlesource.com/7401 Reviewed-by: David Benjamin <davidben@google.com>
28 lines
596 B
CMake
28 lines
596 B
CMake
add_subdirectory(bio)
|
|
add_subdirectory(blowfish)
|
|
add_subdirectory(cast)
|
|
add_subdirectory(des)
|
|
add_subdirectory(dsa)
|
|
add_subdirectory(evp)
|
|
add_subdirectory(rc4)
|
|
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:rc4_decrepit>
|
|
$<TARGET_OBJECTS:rsa_decrepit>
|
|
$<TARGET_OBJECTS:x509>
|
|
$<TARGET_OBJECTS:xts>
|
|
)
|
|
|
|
target_link_libraries(decrepit crypto)
|