boringssl/tool/CMakeLists.txt
Adam Langley cca4d5991f Add digest sum handling to the tool.
Android might want to replace the system *sum (i.e. md5sum, sha256sum
etc) binaries with a symlink to the BoringSSL tool binary.

This change also allows the tool to figure out what to do based on
argv[0] if it matches one of the known commands.

Change-Id: Ia4fc3cff45ce2ae623dae6786eea5d7ad127d44b
Reviewed-on: https://boringssl-review.googlesource.com/2940
Reviewed-by: Adam Langley <agl@google.com>
2015-01-26 21:27:18 +00:00

22 lines
282 B
CMake

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