Skip to content

Commit 956edd9

Browse files
committed
Add status messages for branches
1 parent 2230f60 commit 956edd9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ set(ZLIB_STATIC_LIB ${ZLIB_INSTALL_DIR}/lib/libz.a)
2626
# For the memory sanitizer build, turn off OpenSSL as it causes bugs we can't
2727
# affect (see 16697, 17624)
2828
if(NOT (DEFINED ENV{SANITIZER} AND "$ENV{SANITIZER}" STREQUAL "memory"))
29+
message(STATUS "Building OpenSSL as a dependency")
2930
# Install openssl
3031
#
3132
# renovate: datasource=github-tags depName=openssl/openssl
@@ -92,6 +93,7 @@ if(NOT (DEFINED ENV{SANITIZER} AND "$ENV{SANITIZER}" STREQUAL "memory"))
9293
set(OPENSSL_DEP openssl_external)
9394
set(OPENSSL_STATIC_LIB ${OPENSSL_INSTALL_DIR}/lib/libssl.a ${OPENSSL_INSTALL_DIR}/lib/libcrypto.a)
9495
else()
96+
message(STATUS "Not building OpenSSL")
9597
set(NGHTTP2_OPENSSL_OPTION --without-openssl)
9698
set(OPENSSL_DEP "")
9799
set(OPENSSL_STATIC_LIB "")
@@ -198,6 +200,7 @@ set(CURL_POST_INSTALL_COMMAND
198200
# If there is, use it. Otherwise, download the latest version.
199201
#
200202
if (DEFINED ENV{CURL_SOURCE_DIR})
203+
message(STATUS "Building curl from source directory: $ENV{CURL_SOURCE_DIR}")
201204
ExternalProject_Add(
202205
curl_external
203206
SOURCE_DIR $ENV{CURL_SOURCE_DIR}
@@ -209,6 +212,7 @@ if (DEFINED ENV{CURL_SOURCE_DIR})
209212
)
210213
else()
211214
set(CURL_VERSION 8.14.1)
215+
message(STATUS "Building curl from downloaded source, version ${CURL_VERSION}")
212216
# The URL needs dots replaced with underscores for curl's release naming convention.
213217
string(REPLACE "." "_" CURL_VERSION_UNDERSCORE ${CURL_VERSION})
214218
set(CURL_URL https://github.com/curl/curl/releases/download/curl-${CURL_VERSION_UNDERSCORE}/curl-${CURL_VERSION}.tar.gz)

0 commit comments

Comments
 (0)