summaryrefslogtreecommitdiffstats
path: root/src/tool/CMakeLists.txt
blob: 4bb6ca2fa49ef5c66f1205c0a04aa0e492b598b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)