diff options
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index be8b0b5e8..070151bec 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -34,11 +34,6 @@ endif() | |||
| 34 | # Glad | 34 | # Glad |
| 35 | add_subdirectory(glad) | 35 | add_subdirectory(glad) |
| 36 | 36 | ||
| 37 | # inih | ||
| 38 | if (NOT TARGET inih::INIReader) | ||
| 39 | add_subdirectory(inih) | ||
| 40 | endif() | ||
| 41 | |||
| 42 | # mbedtls | 37 | # mbedtls |
| 43 | add_subdirectory(mbedtls) | 38 | add_subdirectory(mbedtls) |
| 44 | target_include_directories(mbedtls PUBLIC ./mbedtls/include) | 39 | target_include_directories(mbedtls PUBLIC ./mbedtls/include) |
| @@ -194,6 +189,10 @@ if (ANDROID) | |||
| 194 | endif() | 189 | endif() |
| 195 | endif() | 190 | endif() |
| 196 | 191 | ||
| 192 | if (UNIX) | ||
| 193 | add_subdirectory(gamemode) | ||
| 194 | endif() | ||
| 195 | |||
| 197 | # Breakpad | 196 | # Breakpad |
| 198 | # https://github.com/microsoft/vcpkg/blob/master/ports/breakpad/CMakeLists.txt | 197 | # https://github.com/microsoft/vcpkg/blob/master/ports/breakpad/CMakeLists.txt |
| 199 | if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) | 198 | if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) |
| @@ -295,3 +294,8 @@ if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) | |||
| 295 | target_link_libraries(dump_syms PRIVATE libbreakpad_client ZLIB::ZLIB) | 294 | target_link_libraries(dump_syms PRIVATE libbreakpad_client ZLIB::ZLIB) |
| 296 | endif() | 295 | endif() |
| 297 | endif() | 296 | endif() |
| 297 | |||
| 298 | # SimpleIni | ||
| 299 | if (NOT TARGET SimpleIni::SimpleIni) | ||
| 300 | add_subdirectory(simpleini) | ||
| 301 | endif() | ||