summaryrefslogtreecommitdiff
path: root/externals/find-modules/FindUnicorn.cmake
diff options
context:
space:
mode:
authorGravatar Mai M2021-12-13 08:24:47 -0500
committerGravatar GitHub2021-12-13 08:24:47 -0500
commit4e2fb9e51a6ae183739f529e5fd9163efdb5bfd5 (patch)
tree3c61028a10713e663ea55f3c4dcf8ec185591a22 /externals/find-modules/FindUnicorn.cmake
parentMerge pull request #7527 from Tachi107/cubeb-result_of (diff)
parentbuild: remove remaining bits of Unicorn (diff)
downloadyuzu-4e2fb9e51a6ae183739f529e5fd9163efdb5bfd5.tar.gz
yuzu-4e2fb9e51a6ae183739f529e5fd9163efdb5bfd5.tar.xz
yuzu-4e2fb9e51a6ae183739f529e5fd9163efdb5bfd5.zip
Merge pull request #7554 from Tachi107/build-remove-unicorn
build: remove remaining bits of Unicorn
Diffstat (limited to 'externals/find-modules/FindUnicorn.cmake')
-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 @@
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)