diff options
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 8 |
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() |
| 194 | endif() | 194 | endif() |
| 195 | 195 | ||
| 196 | if (CMAKE_SYSTEM_NAME STREQUAL "Linux") | ||
| 197 | add_subdirectory(gamemode) | ||
| 198 | endif() | ||
| 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 |
| 198 | if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) | 202 | if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) |
| @@ -296,4 +300,6 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) | |||
| 296 | endif() | 300 | endif() |
| 297 | 301 | ||
| 298 | # SimpleIni | 302 | # SimpleIni |
| 299 | add_subdirectory(simpleini) | 303 | if (NOT TARGET SimpleIni::SimpleIni) |
| 304 | add_subdirectory(simpleini) | ||
| 305 | endif() | ||