summaryrefslogtreecommitdiffstats
path: root/externals/find-modules/FindUnicorn.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'externals/find-modules/FindUnicorn.cmake')
-rw-r--r--externals/find-modules/FindUnicorn.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/externals/find-modules/FindUnicorn.cmake b/externals/find-modules/FindUnicorn.cmake
new file mode 100644
index 000000000..a0f2a71f6
--- /dev/null
+++ b/externals/find-modules/FindUnicorn.cmake
@@ -0,0 +1,18 @@
+# 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)