Browse Source
Merge pull request #7554 from Tachi107/build-remove-unicorn
build: remove remaining bits of Unicorn
pull/15/merge
Mai M
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
0 additions and
22 deletions
-
externals/CMakeLists.txt
-
externals/find-modules/FindUnicorn.cmake
|
|
|
@ -44,10 +44,6 @@ target_include_directories(mbedtls PUBLIC ./mbedtls/include) |
|
|
|
add_library(microprofile INTERFACE) |
|
|
|
target_include_directories(microprofile INTERFACE ./microprofile) |
|
|
|
|
|
|
|
# Unicorn |
|
|
|
add_library(unicorn-headers INTERFACE) |
|
|
|
target_include_directories(unicorn-headers INTERFACE ./unicorn/include) |
|
|
|
|
|
|
|
# libusb |
|
|
|
if (NOT LIBUSB_FOUND OR YUZU_USE_BUNDLED_LIBUSB) |
|
|
|
add_subdirectory(libusb) |
|
|
|
|
|
|
|
@ -1,18 +0,0 @@ |
|
|
|
# Exports: |
|
|
|
# LIBUNICORN_FOUND |
|
|
|
# LIBUNICORN_INCLUDE_DIR |
|
|
|
# LIBUNICORN_LIBRARY |
|
|
|
|
|
|
|
find_path(LIBUNICORN_INCLUDE_DIR |
|
|
|
unicorn/unicorn.h |
|
|
|
HINTS $ENV{UNICORNDIR} |
|
|
|
PATH_SUFFIXES include) |
|
|
|
|
|
|
|
find_library(LIBUNICORN_LIBRARY |
|
|
|
NAMES unicorn |
|
|
|
HINTS $ENV{UNICORNDIR}) |
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs) |
|
|
|
find_package_handle_standard_args(unicorn DEFAULT_MSG |
|
|
|
LIBUNICORN_LIBRARY LIBUNICORN_INCLUDE_DIR) |
|
|
|
mark_as_advanced(LIBUNICORN_INCLUDE_DIR LIBUNICORN_LIBRARY) |