Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDominik Schmidt <dev@dominik-schmidt.de>2021-10-06 15:49:48 +0300
committerHannah von Reth <vonreth@kde.org>2021-10-06 15:56:16 +0300
commit6a2510185909fb8c8c44b17cc61c32bf98a0beca (patch)
tree198cedb9b072621c1743abeecf767d5f52d91352 /cmake
parent2a06b5901650d23eba75f211d5a4cf5d3522ad7c (diff)
Fix CMake warning in FindLibcloudproviders
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindLibcloudproviders.cmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/cmake/modules/FindLibcloudproviders.cmake b/cmake/modules/FindLibcloudproviders.cmake
index 0e1875fdc..800c1e482 100644
--- a/cmake/modules/FindLibcloudproviders.cmake
+++ b/cmake/modules/FindLibcloudproviders.cmake
@@ -35,8 +35,9 @@ endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
- LIBCLOUDPROVIDERS
- DEFAULT_MSG
- LIBCLOUDPROVIDERS_LIBRARY LIBCLOUDPROVIDERS_INCLUDE_DIR)
+ Libcloudproviders
+ DEFAULT_MSG
+ LIBCLOUDPROVIDERS_LIBRARY LIBCLOUDPROVIDERS_INCLUDE_DIR
+)
mark_as_advanced(LIBCLOUDPROVIDERS_INCLUDE_DIR LIBCLOUDPROVIDERS_LIBRARY)