summaryrefslogtreecommitdiff
path: root/externals/find-modules
diff options
context:
space:
mode:
authorFeng Chen <VonChenPlus@gmail.com>2021-12-18 13:57:14 +0800
committerGitHub <noreply@github.com>2021-12-18 13:57:14 +0800
commite49184e6069a9d791d2df3c1958f5c4b1187e124 (patch)
treeb776caf722e0be0e680f67b0ad0842628162ef1c /externals/find-modules
parent4dd85f86a89338ff84d05a3981c14f6de1be4606 (diff)
parent77d06d5df02d18da381bcd572ce11fee790d9edf (diff)
Merge branch 'yuzu-emu:master' into convert_legacy
Diffstat (limited to 'externals/find-modules')
-rw-r--r--externals/find-modules/FindUnicorn.cmake18
1 files changed, 0 insertions, 18 deletions
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 @@
-# 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)