summaryrefslogtreecommitdiff
path: root/src/common/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Narr the Reg2023-11-29 14:28:37 -0600
committerGravatar GitHub2023-11-29 14:28:37 -0600
commit9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b (patch)
tree039dc2b3dc42aa51df063a873bbd0b78cfbe227f /src/common/CMakeLists.txt
parentMerge pull request #12204 from t895/config-migration (diff)
parentgeneral: conditionally compile gamemode on linux only (diff)
downloadyuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.tar.gz
yuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.tar.xz
yuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.zip
Merge pull request #12223 from liamwhite/fruit-company
general: conditionally compile gamemode on linux only
Diffstat (limited to '')
-rw-r--r--src/common/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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