boringssl/tool/CMakeLists.txt
Dave Tapuska b8a824d70d Add the ability to run a server from the command line tool.
Change-Id: Ia8588aeaad8b44a6a306d7d5bfecc895adde1910
2014-12-11 10:47:21 -08:00

21 lines
271 B
CMake

include_directories(../include)
add_executable(
bssl
args.cc
client.cc
server.cc
const.cc
pkcs12.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()