5c12778948
BUG=129 Change-Id: Iaf07075afaa2ea447e19a8c53ec0d29560d625b3 Reviewed-on: https://boringssl-review.googlesource.com/14207 Commit-Queue: David Benjamin <davidben@google.com> Commit-Queue: Steven Valdez <svaldez@google.com> Reviewed-by: Steven Valdez <svaldez@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
53 lines
1.1 KiB
CMake
53 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)
|
|
if (WIN32)
|
|
target_link_libraries(decrepit_test ws2_32)
|
|
endif()
|
|
add_dependencies(all_tests decrepit_test)
|