mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
build: improve the Linux aspect of things (#75)
Improved, fixed and streamlined cmake files. Optionally use system libraries instead of vcpkg (-DENABLE_VCPKG=OFF)
This commit is contained in:
parent
0f24b0663e
commit
f51a51df3b
18 changed files with 368 additions and 96 deletions
27
cmake/Findimgui.cmake
Normal file
27
cmake/Findimgui.cmake
Normal file
|
@ -0,0 +1,27 @@
|
|||
# SPDX-FileCopyrightText: 2022 Andrea Pappacoda <andrea@pappacoda.it>
|
||||
# SPDX-License-Identifier: ISC
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
|
||||
find_package(imgui CONFIG)
|
||||
if (imgui_FOUND)
|
||||
# Use upstream imguiConfig.cmake if possible
|
||||
find_package_handle_standard_args(imgui CONFIG_MODE)
|
||||
else()
|
||||
# Fallback to pkg-config otherwise
|
||||
find_package(PkgConfig)
|
||||
if (PKG_CONFIG_FOUND)
|
||||
pkg_search_module(imgui IMPORTED_TARGET GLOBAL imgui)
|
||||
if (imgui_FOUND)
|
||||
add_library(imgui::imgui ALIAS PkgConfig::imgui)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_package_handle_standard_args(imgui
|
||||
REQUIRED_VARS
|
||||
imgui_LINK_LIBRARIES
|
||||
imgui_FOUND
|
||||
VERSION_VAR
|
||||
imgui_VERSION
|
||||
)
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue