2022-11-25 18:35:46 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Alexandre Bouvier <contact@amb.tf>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
find_package(PkgConfig QUIET)
|
2023-02-24 22:45:38 +00:00
|
|
|
pkg_search_module(INIH QUIET IMPORTED_TARGET inih)
|
|
|
|
if (INIReader IN_LIST inih_FIND_COMPONENTS)
|
|
|
|
pkg_search_module(INIREADER QUIET IMPORTED_TARGET INIReader)
|
|
|
|
if (INIREADER_FOUND)
|
|
|
|
set(inih_INIReader_FOUND TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
2022-11-25 18:35:46 +00:00
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(inih
|
2023-02-24 22:45:38 +00:00
|
|
|
REQUIRED_VARS INIH_LINK_LIBRARIES
|
|
|
|
VERSION_VAR INIH_VERSION
|
|
|
|
HANDLE_COMPONENTS
|
2022-11-25 18:35:46 +00:00
|
|
|
)
|
2022-12-06 03:17:44 +00:00
|
|
|
|
2023-02-24 22:45:38 +00:00
|
|
|
if (inih_FOUND AND NOT TARGET inih::inih)
|
|
|
|
add_library(inih::inih ALIAS PkgConfig::INIH)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (inih_FOUND AND inih_INIReader_FOUND AND NOT TARGET inih::INIReader)
|
2022-12-06 03:17:44 +00:00
|
|
|
add_library(inih::INIReader ALIAS PkgConfig::INIREADER)
|
|
|
|
endif()
|