diff options
| author | 2022-12-06 04:17:44 +0100 | |
|---|---|---|
| committer | 2022-12-06 05:32:09 +0100 | |
| commit | bb3440f7c46a3a2478f63bf9609202e5996d100d (patch) | |
| tree | 7848141f5798efac8d17f67c0b9987576ba07c39 /externals/find-modules/Findhttplib.cmake | |
| parent | Merge pull request #9385 from Morph1984/dynarmic-ver (diff) | |
| download | yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.gz yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.tar.xz yuzu-bb3440f7c46a3a2478f63bf9609202e5996d100d.zip | |
cmake: correct find modules
Diffstat (limited to 'externals/find-modules/Findhttplib.cmake')
| -rw-r--r-- | externals/find-modules/Findhttplib.cmake | 9 |
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) | |||
| 10 | else() | 10 | else() |
| 11 | find_package(PkgConfig QUIET) | 11 | find_package(PkgConfig QUIET) |
| 12 | if (PKG_CONFIG_FOUND) | 12 | if (PKG_CONFIG_FOUND) |
| 13 | pkg_search_module(HTTPLIB QUIET IMPORTED_TARGET GLOBAL cpp-httplib) | 13 | pkg_search_module(HTTPLIB QUIET IMPORTED_TARGET cpp-httplib) |
| 14 | if (HTTPLIB_FOUND) | ||
| 15 | add_library(httplib::httplib ALIAS PkgConfig::HTTPLIB) | ||
| 16 | endif() | ||
| 17 | endif() | 14 | endif() |
| 18 | find_package_handle_standard_args(httplib | 15 | find_package_handle_standard_args(httplib |
| 19 | REQUIRED_VARS HTTPLIB_INCLUDEDIR | 16 | REQUIRED_VARS HTTPLIB_INCLUDEDIR |
| 20 | VERSION_VAR HTTPLIB_VERSION | 17 | VERSION_VAR HTTPLIB_VERSION |
| 21 | ) | 18 | ) |
| 22 | endif() | 19 | endif() |
| 20 | |||
| 21 | if (httplib_FOUND AND NOT TARGET httplib::httplib) | ||
| 22 | add_library(httplib::httplib ALIAS PkgConfig::HTTPLIB) | ||
| 23 | endif() | ||