Mirror of BoringSSL (grpc依赖)
https://boringssl.googlesource.com/boringssl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
610 B
32 lines
610 B
5 years ago
|
add_library(
|
||
|
test_support_lib
|
||
|
|
||
|
STATIC
|
||
|
|
||
|
abi_test.cc
|
||
|
file_test.cc
|
||
|
malloc.cc
|
||
|
test_util.cc
|
||
|
wycheproof_util.cc
|
||
|
)
|
||
|
|
||
|
if (LIBUNWIND_FOUND)
|
||
|
target_compile_options(test_support_lib PRIVATE ${LIBUNWIND_CFLAGS_OTHER})
|
||
|
target_include_directories(test_support_lib PRIVATE ${LIBUNWIND_INCLUDE_DIRS})
|
||
|
target_link_libraries(test_support_lib ${LIBUNWIND_LDFLAGS})
|
||
|
endif()
|
||
|
if(WIN32)
|
||
|
target_link_libraries(test_support_lib dbghelp)
|
||
|
endif()
|
||
|
add_dependencies(test_support_lib global_target)
|
||
|
|
||
|
add_library(
|
||
|
boringssl_gtest_main
|
||
|
|
||
|
OBJECT
|
||
|
|
||
|
gtest_main.cc
|
||
|
)
|
||
|
|
||
|
add_dependencies(boringssl_gtest_main global_target)
|