-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build overlaybd using static compiled libcurl 7.42.1
Signed-off-by: 鸣舟 <[email protected]>
- Loading branch information
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
include(FetchContent) | ||
|
||
if(${BUILD_CURL_FROM_SOURCE}) | ||
message("Add and build standalone libcurl") | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
curl_bundle | ||
GIT_REPOSITORY https://github.com/curl/curl.git | ||
GIT_TAG curl-7_42_1 | ||
GIT_PROGRESS 1) | ||
|
||
FetchContent_MakeAvailable(curl_bundle) | ||
|
||
# In libcurl, CMakeLists build static lib is broken add build command via | ||
# make | ||
if(NOT TARGET libcurl_static_build) | ||
add_custom_command( | ||
OUTPUT ${curl_bundle_BINARY_DIR}/lib/libcurl.a | ||
WORKING_DIRECTORY ${curl_bundle_SOURCE_DIR} | ||
COMMAND | ||
autoreconf -i && sh configure --with-openssl --without-libssh2 | ||
--enable-static --enable-shared=no --enable-optimize | ||
--enable-symbol-hiding --disable-manual --without-libidn | ||
--prefix=${curl_bundle_BINARY_DIR} && make -j && make install) | ||
add_custom_target(libcurl_static_build | ||
DEPENDS ${curl_bundle_BINARY_DIR}/lib/libcurl.a) | ||
endif() | ||
|
||
set(CURL_FOUND yes) | ||
set(CURL_LIBRARY ${curl_bundle_BINARY_DIR}/lib/libcurl.a) | ||
set(CURL_LIBRARIES ${CURL_LIBRARY}) | ||
set(CURL_INCLUDE_DIR ${curl_bundle_BINARY_DIR}/include) | ||
set(CURL_INCLUDE_DIRS ${CURL_INCLUDE_DIR}) | ||
set(CURL_VERSION_STRING 7.42.1) | ||
|
||
# Use libcurl static lib instead of cmake defined shared lib | ||
if(NOT TARGET CURL::libcurl) | ||
add_library(CURL::libcurl UNKNOWN IMPORTED) | ||
endif() | ||
add_dependencies(CURL::libcurl libcurl_static_build) | ||
message("${CURL_LIBRARY}") | ||
set_target_properties( | ||
CURL::libcurl | ||
PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES "C" | ||
INTERFACE_INCLUDE_DIRECTORIES "${CURL_INCLUDE_DIRS}" | ||
IMPORTED_LOCATION "${CURL_LIBRARY}" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES "crypto ssl") | ||
else() | ||
include(${CMAKE_ROOT}/Modules/FindCURL.cmake) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters