diff options
| -rw-r--r-- | externals/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | externals/find-modules/FindUnicorn.cmake | 18 |
2 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) | |||
| 44 | add_library(microprofile INTERFACE) | 44 | add_library(microprofile INTERFACE) |
| 45 | target_include_directories(microprofile INTERFACE ./microprofile) | 45 | target_include_directories(microprofile INTERFACE ./microprofile) |
| 46 | 46 | ||
| 47 | # Unicorn | ||
| 48 | add_library(unicorn-headers INTERFACE) | ||
| 49 | target_include_directories(unicorn-headers INTERFACE ./unicorn/include) | ||
| 50 | |||
| 51 | # libusb | 47 | # libusb |
| 52 | if (NOT LIBUSB_FOUND OR YUZU_USE_BUNDLED_LIBUSB) | 48 | if (NOT LIBUSB_FOUND OR YUZU_USE_BUNDLED_LIBUSB) |
| 53 | add_subdirectory(libusb) | 49 | add_subdirectory(libusb) |
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 | |||
| 6 | find_path(LIBUNICORN_INCLUDE_DIR | ||
| 7 | unicorn/unicorn.h | ||
| 8 | HINTS $ENV{UNICORNDIR} | ||
| 9 | PATH_SUFFIXES include) | ||
| 10 | |||
| 11 | find_library(LIBUNICORN_LIBRARY | ||
| 12 | NAMES unicorn | ||
| 13 | HINTS $ENV{UNICORNDIR}) | ||
| 14 | |||
| 15 | include(FindPackageHandleStandardArgs) | ||
| 16 | find_package_handle_standard_args(unicorn DEFAULT_MSG | ||
| 17 | LIBUNICORN_LIBRARY LIBUNICORN_INCLUDE_DIR) | ||
| 18 | mark_as_advanced(LIBUNICORN_INCLUDE_DIR LIBUNICORN_LIBRARY) | ||