diff options
author | selsta <selsta@sent.at> | 2021-11-10 00:32:45 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-11-10 00:33:16 +0100 |
commit | a491175f7dbc6eda442c5110699ed1ce2ed2434b (patch) | |
tree | ab3c6d3df118b2dea029cf48768f52c92b6dc25e /CMakeLists.txt | |
parent | Merge pull request #8029 (diff) | |
download | monero-a491175f7dbc6eda442c5110699ed1ce2ed2434b.tar.xz |
cmake: fix incorrect else syntax
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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() |