From 337498823c563d6f588a5f0f660d1f92e4f9511a Mon Sep 17 00:00:00 2001 From: Merry Date: Sat, 27 Jun 2020 10:06:39 +0100 Subject: [PATCH] FindUnicorn: Fix find_package_handle_standard_args warning --- CMakeModules/FindUnicorn.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/FindUnicorn.cmake b/CMakeModules/FindUnicorn.cmake index 1383bacb..71fc08ac 100644 --- a/CMakeModules/FindUnicorn.cmake +++ b/CMakeModules/FindUnicorn.cmake @@ -19,7 +19,7 @@ find_library(LIBUNICORN_LIBRARY HINTS $ENV{UNICORNDIR}) include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(unicorn DEFAULT_MSG LIBUNICORN_LIBRARY LIBUNICORN_INCLUDE_DIR) +find_package_handle_standard_args(Unicorn DEFAULT_MSG LIBUNICORN_LIBRARY LIBUNICORN_INCLUDE_DIR) if (UNICORN_FOUND) set(THREADS_PREFER_PTHREAD_FLAG ON)