forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: Add
libminiupnpc
optional package support
- Loading branch information
Showing
4 changed files
with
100 additions
and
0 deletions.
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
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,84 @@ | ||
# Copyright (c) 2023 The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
if(NOT MSVC) | ||
include(CrossPkgConfig) | ||
cross_pkg_check_modules(PC_MiniUPnPc QUIET miniupnpc) | ||
endif() | ||
|
||
find_path(MiniUPnPc_INCLUDE_DIR | ||
NAMES miniupnpc/miniupnpc.h | ||
PATHS ${PC_MiniUPnPc_INCLUDE_DIRS} | ||
) | ||
|
||
if(MiniUPnPc_INCLUDE_DIR) | ||
file( | ||
STRINGS "${MiniUPnPc_INCLUDE_DIR}/miniupnpc/miniupnpc.h" version_strings | ||
REGEX "^#define[\t ]+MINIUPNPC_API_VERSION[\t ]+[0-9]+" | ||
) | ||
string(REGEX REPLACE "^#define[\t ]+MINIUPNPC_API_VERSION[\t ]+([0-9]+)" "\\1" MiniUPnPc_API_VERSION "${version_strings}") | ||
|
||
# The minimum supported miniUPnPc API version is set to 17. This excludes | ||
# versions with known vulnerabilities. | ||
if(MiniUPnPc_API_VERSION GREATER_EQUAL 17) | ||
set(MiniUPnPc_API_VERSION_OK TRUE) | ||
endif() | ||
endif() | ||
|
||
if(MSVC) | ||
cmake_path(GET MiniUPnPc_INCLUDE_DIR PARENT_PATH MiniUPnPc_IMPORTED_PATH) | ||
find_library(MiniUPnPc_LIBRARY_DEBUG | ||
NAMES miniupnpc PATHS ${MiniUPnPc_IMPORTED_PATH}/debug/lib | ||
NO_DEFAULT_PATH | ||
) | ||
find_library(MiniUPnPc_LIBRARY_RELEASE | ||
NAMES miniupnpc PATHS ${MiniUPnPc_IMPORTED_PATH}/lib | ||
NO_DEFAULT_PATH | ||
) | ||
set(MiniUPnPc_required MiniUPnPc_IMPORTED_PATH) | ||
else() | ||
find_library(MiniUPnPc_LIBRARY | ||
NAMES miniupnpc | ||
PATHS ${PC_MiniUPnPc_LIBRARY_DIRS} | ||
) | ||
set(MiniUPnPc_required MiniUPnPc_LIBRARY) | ||
endif() | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(MiniUPnPc | ||
REQUIRED_VARS ${MiniUPnPc_required} MiniUPnPc_INCLUDE_DIR MiniUPnPc_API_VERSION_OK | ||
) | ||
|
||
if(MiniUPnPc_FOUND AND NOT TARGET MiniUPnPc::MiniUPnPc) | ||
add_library(MiniUPnPc::MiniUPnPc UNKNOWN IMPORTED) | ||
set_target_properties(MiniUPnPc::MiniUPnPc PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${MiniUPnPc_INCLUDE_DIR}" | ||
) | ||
if(MSVC) | ||
if(MiniUPnPc_LIBRARY_DEBUG) | ||
set_property(TARGET MiniUPnPc::MiniUPnPc APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) | ||
set_target_properties(MiniUPnPc::MiniUPnPc PROPERTIES | ||
IMPORTED_LOCATION_DEBUG "${MiniUPnPc_LIBRARY_DEBUG}" | ||
) | ||
endif() | ||
if(MiniUPnPc_LIBRARY_RELEASE) | ||
set_property(TARGET MiniUPnPc::MiniUPnPc APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(MiniUPnPc::MiniUPnPc PROPERTIES | ||
IMPORTED_LOCATION_RELEASE "${MiniUPnPc_LIBRARY_RELEASE}" | ||
) | ||
endif() | ||
else() | ||
set_target_properties(MiniUPnPc::MiniUPnPc PROPERTIES | ||
IMPORTED_LOCATION "${MiniUPnPc_LIBRARY}" | ||
) | ||
endif() | ||
set_property(TARGET MiniUPnPc::MiniUPnPc PROPERTY | ||
INTERFACE_COMPILE_DEFINITIONS USE_UPNP=1 $<$<PLATFORM_ID:Windows>:MINIUPNP_STATICLIB> | ||
) | ||
endif() | ||
|
||
mark_as_advanced( | ||
MiniUPnPc_INCLUDE_DIR | ||
MiniUPnPc_LIBRARY | ||
) |
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
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