summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/CMakeLists.txt2
-rw-r--r--src/common/CMakeLists.txt2
-rw-r--r--src/common/linux/gamemode.cpp1
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)
189 endif() 189 endif()
190endif() 190endif()
191 191
192if (UNIX) 192if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
193 add_subdirectory(gamemode) 193 add_subdirectory(gamemode)
194endif() 194endif()
195 195
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)
174 ) 174 )
175endif() 175endif()
176 176
177if (UNIX) 177if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
178 target_sources(common PRIVATE 178 target_sources(common PRIVATE
179 linux/gamemode.cpp 179 linux/gamemode.cpp
180 linux/gamemode.h 180 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 @@
4#include <gamemode_client.h> 4#include <gamemode_client.h>
5 5
6#include "common/linux/gamemode.h" 6#include "common/linux/gamemode.h"
7#include "common/logging/log.h"
7#include "common/settings.h" 8#include "common/settings.h"
8 9
9namespace Common::Linux { 10namespace Common::Linux {