aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-09-07 14:39:25 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-09-07 14:39:25 -0500
commite0dfda21899f32104ed1f26f4d59e6caffda28dc (patch)
tree365fe48cf948e57d1fc0b6689a547babccc7eb7e
parente65159163d91a4d5f5f0159c989108880e652670 (diff)
parent16646eb6513db7e611d146459f1514e15700c405 (diff)
downloadmonzero-gui-e0dfda21899f32104ed1f26f4d59e6caffda28dc.tar.gz
monzero-gui-e0dfda21899f32104ed1f26f4d59e6caffda28dc.tar.xz
monzero-gui-e0dfda21899f32104ed1f26f4d59e6caffda28dc.zip
Merge pull request #3000
16646eb cmake: fix zxcvbn option description (selsta)
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 71fca00e..23470277 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ set(VERSION "0.${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}")
option(STATIC "Link libraries statically, requires static Qt")
option(USE_DEVICE_TREZOR "Trezor support compilation" ON)
-option(ENABLE_PASS_STRENGTH_METER "Disable zxcvbn" OFF)
+option(ENABLE_PASS_STRENGTH_METER "Enable zxcvbn library for password strength" OFF)
option(WITH_SCANNER "Enable webcam QR scanner" OFF)
option(DEV_MODE "Checkout latest monero master on build" OFF)
@@ -97,7 +97,7 @@ endif()
# Include password strength library
if(ENABLE_PASS_STRENGTH_METER)
- message(STATUS "Buildin with pass strength meter support.")
+ message(STATUS "Building with pass strength meter support.")
else()
add_definitions(-DDISABLE_PASS_STRENGTH_METER)
endif()