diff options
| author | selsta <selsta@sent.at> | 2020-07-09 06:57:49 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-08-09 02:31:57 +0200 |
| commit | 16646eb6513db7e611d146459f1514e15700c405 (patch) | |
| tree | c2c979cb4a447a66fa2427f3e858896cff4cd50c | |
| parent | b7b12212217ebc5d6fe9d1f49b7c3abed42449da (diff) | |
| download | monzero-gui-16646eb6513db7e611d146459f1514e15700c405.tar.gz monzero-gui-16646eb6513db7e611d146459f1514e15700c405.tar.xz monzero-gui-16646eb6513db7e611d146459f1514e15700c405.zip | |
cmake: fix zxcvbn option description
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 298902f8..570c8840 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set(VERSION "${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() |
