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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2017-02-26 20:39:03 +0300
committerJanek Bevendorff <janek@jbev.net>2017-02-26 20:39:03 +0300
commit6125988f35032bdfb88cc5eaf30a3d76371aa879 (patch)
tree8443ded48bad3acaacd48a0f6e4ade03f012c654 /cmake
parent0a85279bcb2e3d4beff9cdca210e3d12ee1f6885 (diff)
Mark CMake library variables as advanced
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindYubiKey.cmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmake/FindYubiKey.cmake b/cmake/FindYubiKey.cmake
index 297b68387..e5e0bb681 100644
--- a/cmake/FindYubiKey.cmake
+++ b/cmake/FindYubiKey.cmake
@@ -24,6 +24,4 @@ set(YUBIKEY_LIBRARIES ${YUBIKEY_CORE_LIBRARY} ${YUBIKEY_PERS_LIBRARY})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(YubiKey DEFAULT_MSG YUBIKEY_LIBRARIES YUBIKEY_INCLUDE_DIRS)
-# TODO: Is mark_as_advanced() necessary? It's used in many examples with
-# little explanation. Disable for now in favor of simplicity.
-#mark_as_advanced(YUBIKEY_LIBRARIES YUBIKEY_INCLUDE_DIRS)
+mark_as_advanced(YUBIKEY_LIBRARIES YUBIKEY_INCLUDE_DIRS)