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 Alexandre Bouvier <contact@amb.tf>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
find_package(PkgConfig QUIET)
|
|
|
|
if (PKG_CONFIG_FOUND)
|
2022-12-06 03:17:44 +00:00
|
|
|
pkg_search_module(ENET QUIET IMPORTED_TARGET libenet)
|
2022-11-25 18:35:46 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(enet
|
|
|
|
REQUIRED_VARS ENET_LINK_LIBRARIES
|
|
|
|
VERSION_VAR ENET_VERSION
|
|
|
|
)
|
2022-12-06 03:17:44 +00:00
|
|
|
|
|
|
|
if (enet_FOUND AND NOT TARGET enet::enet)
|
|
|
|
add_library(enet::enet ALIAS PkgConfig::ENET)
|
|
|
|
endif()
|