From a491175f7dbc6eda442c5110699ed1ce2ed2434b Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 10 Nov 2021 00:32:45 +0100 Subject: [PATCH] cmake: fix incorrect else syntax --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f71133ec0..bf4fa5c18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -687,7 +687,7 @@ if (HIDAPI_FOUND) add_definitions(-DHAVE_HIDAPI) include_directories(${HIDAPI_INCLUDE_DIR}) link_directories(${LIBHIDAPI_LIBRARY_DIRS}) -else (HIDAPI_FOUND) +else() message(STATUS "Could not find HIDAPI") endif()