diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-11-30 17:03:23 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-11-30 17:03:23 -0500 |
commit | a723f250415009a62069273b48014c24bda865e6 (patch) | |
tree | 7cc6e6720e43d828192fe90c711a1c39822569ea | |
parent | Merge pull request #8027 (diff) | |
parent | cmake: fix incorrect else syntax (diff) | |
download | monero-a723f250415009a62069273b48014c24bda865e6.tar.xz |
Merge pull request #8054
a491175 cmake: fix incorrect else syntax (selsta)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9589618a4..5d510b853 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -684,7 +684,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() |