summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r--externals/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 8f83d4991..8e1fc696a 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -193,6 +193,10 @@ if (ANDROID)
193 endif() 193 endif()
194endif() 194endif()
195 195
196if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
197 add_subdirectory(gamemode)
198endif()
199
196# Breakpad 200# Breakpad
197# https://github.com/microsoft/vcpkg/blob/master/ports/breakpad/CMakeLists.txt 201# https://github.com/microsoft/vcpkg/blob/master/ports/breakpad/CMakeLists.txt
198if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) 202if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client)
@@ -296,4 +300,6 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client)
296endif() 300endif()
297 301
298# SimpleIni 302# SimpleIni
299add_subdirectory(simpleini) 303if (NOT TARGET SimpleIni::SimpleIni)
304 add_subdirectory(simpleini)
305endif()