blob: 66abdd79a38f01455a6b1a2919ab75b9fc8484d5 [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001#***************************************************************************
2# _ _ ____ _
3# Project ___| | | | _ \| |
4# / __| | | | |_) | |
5# | (__| |_| | _ <| |___
6# \___|\___/|_| \_\_____|
7#
8# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
9#
10# This software is licensed as described in the file COPYING, which
11# you should have received as part of this distribution. The terms
12# are also available at https://curl.se/docs/copyright.html.
13#
14# You may opt to use, copy, modify, merge, publish, distribute and/or sell
15# copies of the Software, and permit persons to whom the Software is
16# furnished to do so, under the terms of the COPYING file.
17#
18# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19# KIND, either express or implied.
20#
21# SPDX-License-Identifier: curl
22#
23###########################################################################
24# - Try to find the libpsl library
25# Once done this will define
26#
27# LIBPSL_FOUND - system has the libpsl library
28# LIBPSL_INCLUDE_DIR - the libpsl include directory
29# LIBPSL_LIBRARY - the libpsl library name
30
31find_path(LIBPSL_INCLUDE_DIR libpsl.h)
32
33find_library(LIBPSL_LIBRARY NAMES psl libpsl)
34
35if(LIBPSL_INCLUDE_DIR)
36 file(STRINGS "${LIBPSL_INCLUDE_DIR}/libpsl.h" libpsl_version_str REGEX "^#define[\t ]+PSL_VERSION[\t ]+\"(.*)\"")
37 string(REGEX REPLACE "^.*\"([^\"]+)\"" "\\1" LIBPSL_VERSION "${libpsl_version_str}")
38endif()
39
40include(FindPackageHandleStandardArgs)
41find_package_handle_standard_args(LibPSL
42 REQUIRED_VARS LIBPSL_LIBRARY LIBPSL_INCLUDE_DIR
43 VERSION_VAR LIBPSL_VERSION)
44
45mark_as_advanced(LIBPSL_INCLUDE_DIR LIBPSL_LIBRARY)