aboutsummaryrefslogtreecommitdiff
path: root/CMakeModules
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-11-30 11:52:03 -0500
committerGitHub <noreply@github.com>2023-11-30 11:52:03 -0500
commit3c45ba1c2213b9f23dc90e53d840f626d241f537 (patch)
treef09b1f3a4c07ffdd1ba36ad6993a3220c5fbdf0b /CMakeModules
parent127bfb81d5f03eb86f21053e6423083fec18d3fa (diff)
parentd2bb9e9729bbdeb396817c2335c4fafbf5ac94a2 (diff)
Merge pull request #12234 from abouvier/unbundle-gamemode
cmake: prefer system gamemode library
Diffstat (limited to 'CMakeModules')
-rw-r--r--CMakeModules/Findgamemode.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/CMakeModules/Findgamemode.cmake b/CMakeModules/Findgamemode.cmake
new file mode 100644
index 000000000..aa2f36683
--- /dev/null
+++ b/CMakeModules/Findgamemode.cmake
@@ -0,0 +1,15 @@
+# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+find_package(PkgConfig QUIET)
+pkg_search_module(GAMEMODE QUIET IMPORTED_TARGET gamemode)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(gamemode
+ REQUIRED_VARS GAMEMODE_INCLUDEDIR
+ VERSION_VAR GAMEMODE_VERSION
+)
+
+if (gamemode_FOUND AND NOT TARGET gamemode::headers)
+ add_library(gamemode::headers ALIAS PkgConfig::GAMEMODE)
+endif()