0105ece171
Don't link with dl, except on Linux where we have malloc tests. Change-Id: I7b23acc854172e64628a55acecfaa9a661f74f77 Reviewed-on: https://boringssl-review.googlesource.com/2453 Reviewed-by: Adam Langley <agl@google.com>
17 lines
257 B
CMake
17 lines
257 B
CMake
include_directories(../../include)
|
|
|
|
add_executable(
|
|
bssl_shim
|
|
|
|
async_bio.cc
|
|
bssl_shim.cc
|
|
malloc.cc
|
|
packeted_bio.cc
|
|
test_config.cc
|
|
)
|
|
|
|
target_link_libraries(bssl_shim ssl crypto)
|
|
if (NOT APPLE AND NOT WIN32)
|
|
target_link_libraries(bssl_shim dl)
|
|
endif()
|