mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix broken build when using system zxcvbn (#10717)
* Fix broken build when using system zxcvbn
Fixup of zxcvbn include statement added in 5513ff5
. A zxcvbn/ directory
prefix breaks building with system zxcvbn. Remove this prefix to align
this include statement with ones present in other files. Add zxcvbn
libraries as dependency to CliTest.
* Move src/zxcvbn/ to src/thirdparty/zxcvbn
This commit is contained in:
parent
20868ab3a2
commit
9aa040604a
12 changed files with 20 additions and 21 deletions
|
@ -249,7 +249,7 @@ if(WITH_XC_NETWORKING OR WITH_XC_BROWSER)
|
|||
endif()
|
||||
|
||||
add_unit_test(NAME testcli SOURCES TestCli.cpp
|
||||
LIBS testsupport cli ${TEST_LIBRARIES})
|
||||
LIBS testsupport cli ${ZXCVBN_LIBRARIES} ${TEST_LIBRARIES})
|
||||
target_compile_definitions(testcli PRIVATE KEEPASSX_CLI_PATH="$<TARGET_FILE:keepassxc-cli>")
|
||||
|
||||
if(WITH_GUI_TESTS)
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include "crypto/Crypto.h"
|
||||
#include "keys/FileKey.h"
|
||||
#include "keys/drivers/YubiKey.h"
|
||||
#include "zxcvbn/zxcvbn.h"
|
||||
|
||||
#include "cli/Add.h"
|
||||
#include "cli/AddGroup.h"
|
||||
|
@ -59,6 +58,7 @@
|
|||
#include <QSignalSpy>
|
||||
#include <QTest>
|
||||
#include <QtConcurrent>
|
||||
#include <zxcvbn.h>
|
||||
|
||||
QTEST_MAIN(TestCli)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue