summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r--externals/CMakeLists.txt14
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
35add_subdirectory(glad) 35add_subdirectory(glad)
36 36
37# inih
38if (NOT TARGET inih::INIReader)
39 add_subdirectory(inih)
40endif()
41
42# mbedtls 37# mbedtls
43add_subdirectory(mbedtls) 38add_subdirectory(mbedtls)
44target_include_directories(mbedtls PUBLIC ./mbedtls/include) 39target_include_directories(mbedtls PUBLIC ./mbedtls/include)
@@ -194,6 +189,10 @@ if (ANDROID)
194 endif() 189 endif()
195endif() 190endif()
196 191
192if (UNIX)
193 add_subdirectory(gamemode)
194endif()
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
199if (YUZU_CRASH_DUMPS AND NOT TARGET libbreakpad_client) 198if (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()
297endif() 296endif()
297
298# SimpleIni
299if (NOT TARGET SimpleIni::SimpleIni)
300 add_subdirectory(simpleini)
301endif()