summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Jan Beich2023-11-29 23:11:36 +0100
committerGravatar Jan Beich2023-11-30 00:05:11 +0100
commitdf96caec793fbf4262a2dee2a77cbd09725a078d (patch)
treebcb255472ae86f2030831c1986ca3d0191ae159f /externals/CMakeLists.txt
parentMerge pull request #12223 from liamwhite/fruit-company (diff)
downloadyuzu-df96caec793fbf4262a2dee2a77cbd09725a078d.tar.gz
yuzu-df96caec793fbf4262a2dee2a77cbd09725a078d.tar.xz
yuzu-df96caec793fbf4262a2dee2a77cbd09725a078d.zip
cmake: sync gamemode conditionals with code after 5eec980a2d71
FAILED: bin/yuzu ld: error: unable to find library -lgamemode FAILED: bin/yuzu-cmd ld: error: undefined symbol: Common::Linux::StartGamemode() >>> referenced by yuzu.cpp >>> src/yuzu_cmd/CMakeFiles/yuzu-cmd.dir/yuzu.cpp.o:(main) ld: error: undefined symbol: Common::Linux::StopGamemode() >>> referenced by yuzu.cpp >>> src/yuzu_cmd/CMakeFiles/yuzu-cmd.dir/yuzu.cpp.o:(main)
Diffstat (limited to '')
-rw-r--r--externals/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 40ec20f3d..3213a16ef 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -189,7 +189,7 @@ if (ANDROID)
189 endif() 189 endif()
190endif() 190endif()
191 191
192if (CMAKE_SYSTEM_NAME STREQUAL "Linux") 192if (UNIX AND NOT APPLE)
193 add_subdirectory(gamemode) 193 add_subdirectory(gamemode)
194endif() 194endif()
195 195