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 | 155c5ecb8ebce81ca8c0f729487a239270897b7a (diff) | |
| parent | a491175f7dbc6eda442c5110699ed1ce2ed2434b (diff) | |
| download | monzero-core-a723f250415009a62069273b48014c24bda865e6.tar.gz monzero-core-a723f250415009a62069273b48014c24bda865e6.tar.xz monzero-core-a723f250415009a62069273b48014c24bda865e6.zip | |
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() |
