summaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorGravatar Feng Chen2021-12-18 13:57:14 +0800
committerGravatar GitHub2021-12-18 13:57:14 +0800
commite49184e6069a9d791d2df3c1958f5c4b1187e124 (patch)
treeb776caf722e0be0e680f67b0ad0842628162ef1c /externals
parentImplement convert legacy to generic (diff)
parentMerge pull request #7570 from ameerj/favorites-expanded (diff)
downloadyuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.gz
yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.xz
yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.zip
Merge branch 'yuzu-emu:master' into convert_legacy
Diffstat (limited to 'externals')
-rw-r--r--externals/CMakeLists.txt4
m---------externals/SDL0
m---------externals/cubeb0
-rw-r--r--externals/find-modules/FindUnicorn.cmake18
4 files changed, 0 insertions, 22 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index a76a3d800..64d1e6aec 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -44,10 +44,6 @@ target_include_directories(mbedtls PUBLIC ./mbedtls/include)
44add_library(microprofile INTERFACE) 44add_library(microprofile INTERFACE)
45target_include_directories(microprofile INTERFACE ./microprofile) 45target_include_directories(microprofile INTERFACE ./microprofile)
46 46
47# Unicorn
48add_library(unicorn-headers INTERFACE)
49target_include_directories(unicorn-headers INTERFACE ./unicorn/include)
50
51# libusb 47# libusb
52if (NOT LIBUSB_FOUND OR YUZU_USE_BUNDLED_LIBUSB) 48if (NOT LIBUSB_FOUND OR YUZU_USE_BUNDLED_LIBUSB)
53 add_subdirectory(libusb) 49 add_subdirectory(libusb)
diff --git a/externals/SDL b/externals/SDL
Subproject 25f9ed87ff6947d9576fc9d79dee0784e638ac5 Subproject 2e9821423a237a1206e3c09020778faacfe430b
diff --git a/externals/cubeb b/externals/cubeb
Subproject 1d66483ad2b93f0e00e175f9480c771af90003a Subproject 75d9d125ee655ef80f3bfcd97ae5a805931042b
diff --git a/externals/find-modules/FindUnicorn.cmake b/externals/find-modules/FindUnicorn.cmake
deleted file mode 100644
index a0f2a71f6..000000000
--- a/externals/find-modules/FindUnicorn.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
1# Exports:
2# LIBUNICORN_FOUND
3# LIBUNICORN_INCLUDE_DIR
4# LIBUNICORN_LIBRARY
5
6find_path(LIBUNICORN_INCLUDE_DIR
7 unicorn/unicorn.h
8 HINTS $ENV{UNICORNDIR}
9 PATH_SUFFIXES include)
10
11find_library(LIBUNICORN_LIBRARY
12 NAMES unicorn
13 HINTS $ENV{UNICORNDIR})
14
15include(FindPackageHandleStandardArgs)
16find_package_handle_standard_args(unicorn DEFAULT_MSG
17 LIBUNICORN_LIBRARY LIBUNICORN_INCLUDE_DIR)
18mark_as_advanced(LIBUNICORN_INCLUDE_DIR LIBUNICORN_LIBRARY)