This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2022-11-25 18:35:46 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Andrea Pappacoda <andrea@pappacoda.it>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
|
|
|
find_package(httplib QUIET CONFIG)
|
2022-12-31 11:48:08 +00:00
|
|
|
if (httplib_CONSIDERED_CONFIGS)
|
2022-11-25 18:35:46 +00:00
|
|
|
find_package_handle_standard_args(httplib CONFIG_MODE)
|
|
|
|
else()
|
|
|
|
find_package(PkgConfig QUIET)
|
2022-12-14 08:30:31 +00:00
|
|
|
pkg_search_module(HTTPLIB QUIET IMPORTED_TARGET cpp-httplib)
|
2022-11-25 18:35:46 +00:00
|
|
|
find_package_handle_standard_args(httplib
|
|
|
|
REQUIRED_VARS HTTPLIB_INCLUDEDIR
|
|
|
|
VERSION_VAR HTTPLIB_VERSION
|
|
|
|
)
|
|
|
|
endif()
|
2022-12-06 03:17:44 +00:00
|
|
|
|
|
|
|
if (httplib_FOUND AND NOT TARGET httplib::httplib)
|
|
|
|
add_library(httplib::httplib ALIAS PkgConfig::HTTPLIB)
|
|
|
|
endif()
|