summaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorGravatar lat9nq2021-04-16 19:12:47 -0400
committerGravatar lat9nq2021-04-16 19:12:47 -0400
commit12e58917c0280ef8dcb2e94cd9a02bac03c3d27a (patch)
tree057653e34546b3055e653e48847642526c727d01 /externals
parentMerge pull request #6201 from bunnei/remove-bintray (diff)
downloadyuzu-12e58917c0280ef8dcb2e94cd9a02bac03c3d27a.tar.gz
yuzu-12e58917c0280ef8dcb2e94cd9a02bac03c3d27a.tar.xz
yuzu-12e58917c0280ef8dcb2e94cd9a02bac03c3d27a.zip
externals: Add SDL 2.0.12
Since Bintray is (soon to be) no more, there needs to be a way to acquire SDL2. Since 20.04's version is older than our minimum required version (2.0.12), add it as an external.
Diffstat (limited to 'externals')
-rw-r--r--externals/CMakeLists.txt6
m---------externals/SDL0
2 files changed, 6 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 891a47c3c..6e4591b4e 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -45,6 +45,12 @@ target_include_directories(microprofile INTERFACE ./microprofile)
45add_library(unicorn-headers INTERFACE) 45add_library(unicorn-headers INTERFACE)
46target_include_directories(unicorn-headers INTERFACE ./unicorn/include) 46target_include_directories(unicorn-headers INTERFACE ./unicorn/include)
47 47
48# SDL2
49if (NOT SDL2_FOUND)
50 set(SDL2_FOUND YES)
51 add_subdirectory(SDL EXCLUDE_FROM_ALL)
52endif()
53
48# SoundTouch 54# SoundTouch
49add_subdirectory(soundtouch) 55add_subdirectory(soundtouch)
50 56
diff --git a/externals/SDL b/externals/SDL
new file mode 160000
Subproject 983bbf9ef3e572a073a6f5877faf1c0b4803527