e60e2a483b
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>
19 lines
221 B
CMake
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)
|