/
githubmirror
/
yuzu
Обзор
Документация
Войти
/
githubmirror
/
yuzu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CMakeModules/Findenet.cmake
16 строк
446 B
Alexandre Bouvier
cmake: move find-modules to root cmake dir
02 янв 2023, 20:22
02 янв 2023, 20:22
eceee8c
Код
Авторство
О чём код?
# SPDX-FileCopyrightText: 2022 Alexandre Bouvier <contact@amb.tf> # # SPDX-License-Identifier: GPL-3.0-or-later find_package(PkgConfig QUIET) pkg_search_module(ENET QUIET IMPORTED_TARGET libenet) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(enet REQUIRED_VARS ENET_LINK_LIBRARIES VERSION_VAR ENET_VERSION ) if (enet_FOUND AND NOT TARGET enet::enet) add_library(enet::enet ALIAS PkgConfig::ENET) endif()