diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-04 19:52:54 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-04 19:52:54 -0500 |
commit | da7053b169a562caead1d58bde0606adb4a1af0e (patch) | |
tree | dca84ec7ac5b1dbdca91f91b6096c7fd761114d1 | |
parent | 0dbc8f3577095dd3fa403ce65c2ac3da531fff75 (diff) |
cmake: Add script to find Unicorn.
-rw-r--r-- | externals/cmake-modules/FindUnicorn.cmake | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/externals/cmake-modules/FindUnicorn.cmake b/externals/cmake-modules/FindUnicorn.cmake new file mode 100644 index 000000000..a0f2a71f6 --- /dev/null +++ b/externals/cmake-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) |