boringssl/tool/CMakeLists.txt
Adam Langley eb8be01f0c Add ciphers option to bssl.
This simply converts a cipher suite string to the list of cipher suites
that it implies.

Change-Id: Id8b31086715d619ea6601c40a6eb84dc0d8c500d
Reviewed-on: https://boringssl-review.googlesource.com/6370
Reviewed-by: Adam Langley <agl@google.com>
2015-11-03 01:17:02 +00:00

30 lines
454 B
CMake

include_directories(../include)
add_executable(
bssl
args.cc
ciphers.cc
client.cc
const.cc
digest.cc
genrsa.cc
pkcs12.cc
rand.cc
server.cc
speed.cc
tool.cc
transport_common.cc
)
if (APPLE OR WIN32 OR ANDROID)
target_link_libraries(bssl ssl crypto)
else()
find_library(FOUND_LIBRT rt)
if (FOUND_LIBRT)
target_link_libraries(bssl ssl crypto -lrt)
else()
target_link_libraries(bssl ssl crypto)
endif()
endif()