summaryrefslogtreecommitdiffstats
path: root/externals/find-modules/Findhttplib.cmake
diff options
context:
space:
mode:
authorAlexandre Bouvier <contact@amb.tf>2022-12-06 04:17:44 +0100
committerAlexandre Bouvier <contact@amb.tf>2022-12-06 05:32:09 +0100
commitbb3440f7c46a3a2478f63bf9609202e5996d100d (patch)
tree7848141f5798efac8d17f67c0b9987576ba07c39 /externals/find-modules/Findhttplib.cmake
parentMerge pull request #9385 from Morph1984/dynarmic-ver (diff)
downloadyuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.gz
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.bz2
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.lz
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.xz
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.zst
yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.zip
Diffstat (limited to 'externals/find-modules/Findhttplib.cmake')
-rw-r--r--externals/find-modules/Findhttplib.cmake9
1 files changed, 5 insertions, 4 deletions
diff --git a/externals/find-modules/Findhttplib.cmake b/externals/find-modules/Findhttplib.cmake
index 56e92a637..b72bad076 100644
--- a/externals/find-modules/Findhttplib.cmake
+++ b/externals/find-modules/Findhttplib.cmake
@@ -10,13 +10,14 @@ if (httplib_FOUND)
else()
find_package(PkgConfig QUIET)
if (PKG_CONFIG_FOUND)
- pkg_search_module(HTTPLIB QUIET IMPORTED_TARGET GLOBAL cpp-httplib)
- if (HTTPLIB_FOUND)
- add_library(httplib::httplib ALIAS PkgConfig::HTTPLIB)
- endif()
+ pkg_search_module(HTTPLIB QUIET IMPORTED_TARGET cpp-httplib)
endif()
find_package_handle_standard_args(httplib
REQUIRED_VARS HTTPLIB_INCLUDEDIR
VERSION_VAR HTTPLIB_VERSION
)
endif()
+
+if (httplib_FOUND AND NOT TARGET httplib::httplib)
+ add_library(httplib::httplib ALIAS PkgConfig::HTTPLIB)
+endif()