diff options
author | Mai M <mathew1800@gmail.com> | 2021-12-13 08:24:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 08:24:47 -0500 |
commit | 4e2fb9e51a6ae183739f529e5fd9163efdb5bfd5 (patch) | |
tree | 3c61028a10713e663ea55f3c4dcf8ec185591a22 /externals/find-modules | |
parent | a2f842ce5446ea481d14302e557c25015e7c76b0 (diff) | |
parent | eec9aace6091bb8441ad4420b8c7cd9d623fc792 (diff) |
Merge pull request #7554 from Tachi107/build-remove-unicorn
build: remove remaining bits of Unicorn
Diffstat (limited to 'externals/find-modules')
-rw-r--r-- | externals/find-modules/FindUnicorn.cmake | 18 |
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) |