mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-06 00:02:44 +02:00
I promise I'm a UI developer - mbedtls can now be used as a system package - zycore can now be used as a system package - cleaned up dynarmic externals - fixed libusb incorrectly showing as bundled - add version/tag formatting to JSON - add custom GIT_HOST option for packages - moved some of my repos to my new git - slightly better version identification - combined VUL/VH since they are codependent (using my combo vendor) - fix cpmfile inclusion - remove libusb submodule This PR succeeds #383 since it includes it Co-authored-by: SDK Chan <sdkchan@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/392 Co-authored-by: crueter <crueter@crueter.xyz> Co-committed-by: crueter <crueter@crueter.xyz>
18 lines
532 B
CMake
18 lines
532 B
CMake
# SPDX-FileCopyrightText: 2025 Eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package(PkgConfig QUIET)
|
|
pkg_search_module(mbedtls QUIET IMPORTED_TARGET mbedtls)
|
|
find_package_handle_standard_args(mbedtls
|
|
REQUIRED_VARS mbedtls_LINK_LIBRARIES
|
|
VERSION_VAR mbedtls_VERSION
|
|
)
|
|
|
|
pkg_search_module(mbedcrypto QUIET IMPORTED_TARGET mbedcrypto)
|
|
find_package_handle_standard_args(mbedcrypto
|
|
REQUIRED_VARS mbedcrypto_LINK_LIBRARIES
|
|
VERSION_VAR mbedcrypto_VERSION
|
|
)
|