boringssl/ssl/test/CMakeLists.txt
David Benjamin 5a593af42a Move configuration into a dedicated TestConfig struct.
This removes some duplicate code in parsing command-line flags and, more
importantly, makes configuration available when constructing the SSL_CTX and
avoids a number of globals.

Change-Id: I26e2d2285b732f855a2c82752bc8e0db480c3b30
Reviewed-on: https://boringssl-review.googlesource.com/1502
Reviewed-by: Adam Langley <agl@google.com>
2014-08-13 23:44:50 +00:00

12 lines
155 B
CMake

include_directories(../../include)
add_executable(
bssl_shim
async_bio.cc
bssl_shim.cc
test_config.cc
)
target_link_libraries(bssl_shim ssl crypto)