e6fd125d31
We currently write a mix of "if (FOO)" and "if(FOO)". While the former looks more like a usual language, CMake believes everything, even "if" and "else", is just a really really funny function call (a "command"). We should pick something for consistency. Upstream CMake writes "if(FOO)", so go with that one. Change-Id: I67e0eb650a52670110b417312a362c9f161c8721 Reviewed-on: https://boringssl-review.googlesource.com/30807 Reviewed-by: Adam Langley <agl@google.com>
56 lines
1.2 KiB
CMake
56 lines
1.2 KiB
CMake
include_directories(../include)
|
|
|
|
add_subdirectory(bio)
|
|
add_subdirectory(blowfish)
|
|
add_subdirectory(cast)
|
|
add_subdirectory(cfb)
|
|
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:cfb>
|
|
$<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
|
|
cfb/cfb_test.cc
|
|
|
|
$<TARGET_OBJECTS:boringssl_gtest_main>
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(decrepit_test crypto decrepit boringssl_gtest)
|
|
if(WIN32)
|
|
target_link_libraries(decrepit_test ws2_32)
|
|
endif()
|
|
add_dependencies(all_tests decrepit_test)
|