bdcfd1366f
This is purely to support curl, which now has HTTPS proxy support that, sadly, uses the BIO SSL. Don't use the BIO SSL for anything else. Change-Id: I9ef6c9773ec87a11e0b5a93968386ac4b351986d Reviewed-on: https://boringssl-review.googlesource.com/13600 Commit-Queue: Adam Langley <agl@google.com> Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
50 lines
1.1 KiB
CMake
50 lines
1.1 KiB
CMake
include_directories(../include)
|
|
|
|
add_subdirectory(bio)
|
|
add_subdirectory(blowfish)
|
|
add_subdirectory(cast)
|
|
add_subdirectory(des)
|
|
add_subdirectory(dh)
|
|
add_subdirectory(dsa)
|
|
add_subdirectory(evp)
|
|
add_subdirectory(obj)
|
|
add_subdirectory(rc4)
|
|
add_subdirectory(ripemd)
|
|
add_subdirectory(rsa)
|
|
add_subdirectory(ssl)
|
|
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:dh_decrepit>
|
|
$<TARGET_OBJECTS:dsa_decrepit>
|
|
$<TARGET_OBJECTS:evp_decrepit>
|
|
$<TARGET_OBJECTS:obj_decrepit>
|
|
$<TARGET_OBJECTS:rc4_decrepit>
|
|
$<TARGET_OBJECTS:ripemd_decrepit>
|
|
$<TARGET_OBJECTS:rsa_decrepit>
|
|
$<TARGET_OBJECTS:ssl_decrepit>
|
|
$<TARGET_OBJECTS:x509_decrepit>
|
|
$<TARGET_OBJECTS:xts>
|
|
)
|
|
|
|
target_link_libraries(decrepit crypto ssl)
|
|
|
|
add_executable(
|
|
decrepit_test
|
|
|
|
ripemd/ripemd_test.cc
|
|
|
|
$<TARGET_OBJECTS:gtest_main>
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(decrepit_test crypto decrepit gtest)
|
|
add_dependencies(all_tests decrepit_test)
|