diff options
author | Liam <byteslice@airmail.cc> | 2023-11-29 20:17:12 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-11-29 20:26:11 +0100 |
commit | 5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d (patch) | |
tree | 039dc2b3dc42aa51df063a873bbd0b78cfbe227f | |
parent | Merge pull request #12204 from t895/config-migration (diff) | |
download | yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar.gz yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar.bz2 yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar.lz yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar.xz yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.tar.zst yuzu-5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d.zip |
-rw-r--r-- | externals/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/common/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/common/linux/gamemode.cpp | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 070151bec..40ec20f3d 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -189,7 +189,7 @@ if (ANDROID) endif() endif() -if (UNIX) +if (CMAKE_SYSTEM_NAME STREQUAL "Linux") add_subdirectory(gamemode) endif() diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 57cbb9d07..2651daadb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -174,7 +174,7 @@ if(ANDROID) ) endif() -if (UNIX) +if (CMAKE_SYSTEM_NAME STREQUAL "Linux") target_sources(common PRIVATE linux/gamemode.cpp linux/gamemode.h diff --git a/src/common/linux/gamemode.cpp b/src/common/linux/gamemode.cpp index 8876d8dc4..8d3e2934a 100644 --- a/src/common/linux/gamemode.cpp +++ b/src/common/linux/gamemode.cpp @@ -4,6 +4,7 @@ #include <gamemode_client.h> #include "common/linux/gamemode.h" +#include "common/logging/log.h" #include "common/settings.h" namespace Common::Linux { |