boringssl/tool/CMakeLists.txt
Adam Langley e60e2a483b tool: we don't need -lrt.
I think, long ago, I tried to use the monotonic clock in speed.cc, which
needs -lrt. However, the current code doesn't use that and thus doesn't
need -lrt.

Change-Id: Ibcbf90f91ae6b852c0975dff006346125243df54
Reviewed-on: https://boringssl-review.googlesource.com/4622
Reviewed-by: David Benjamin <davidben@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2015-05-05 18:28:26 +00:00

19 lines
221 B
CMake

include_directories(../include)
add_executable(
bssl
args.cc
client.cc
const.cc
digest.cc
pkcs12.cc
rand.cc
server.cc
speed.cc
tool.cc
transport_common.cc
)
target_link_libraries(bssl ssl crypto)