mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Remove refs to decrepit boringssl library. (#373)
It's unused, and it's not installed by vcpkg.
This commit is contained in:
parent
797b40e7c2
commit
146ee2acf8
1 changed files with 2 additions and 3 deletions
|
@ -167,7 +167,7 @@ ELSE()
|
|||
ENDIF()
|
||||
|
||||
IF (NOT DEFINED BORINGSSL_LIB AND DEFINED BORINGSSL_DIR)
|
||||
FOREACH(LIB_NAME ssl crypto decrepit)
|
||||
FOREACH(LIB_NAME ssl crypto)
|
||||
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
||||
FIND_LIBRARY(BORINGSSL_LIB_${LIB_NAME}
|
||||
NAMES ${LIB_NAME}
|
||||
|
@ -190,14 +190,13 @@ IF (NOT DEFINED BORINGSSL_LIB AND DEFINED BORINGSSL_DIR)
|
|||
ELSE()
|
||||
|
||||
|
||||
FOREACH(LIB_NAME ssl crypto decrepit)
|
||||
FOREACH(LIB_NAME ssl crypto)
|
||||
# If BORINGSSL_LIB is defined, try find each lib. Otherwise, user should define BORINGSSL_LIB_ssl,
|
||||
# BORINGSSL_LIB_crypto and so on explicitly. For example, including boringssl and lsquic both via
|
||||
# add_subdirectory:
|
||||
# add_subdirectory(third_party/boringssl)
|
||||
# set(BORINGSSL_LIB_ssl ssl)
|
||||
# set(BORINGSSL_LIB_crypto crypto)
|
||||
# set(BORINGSSL_LIB_decrepit decrepit)
|
||||
# add_subdirectory(third_party/lsquic)
|
||||
IF (DEFINED BORINGSSL_LIB)
|
||||
IF (CMAKE_SYSTEM_NAME STREQUAL Windows)
|
||||
|
|
Loading…
Reference in a new issue