Merge pull request #106 from d1vanov/master

Fix building on Windows without credential store
This commit is contained in:
Frank Osterfeld 2017-12-15 10:23:14 +01:00 committed by GitHub
commit f8321af271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ add_definitions( -Wall )
if(WIN32)
list(APPEND qtkeychain_SOURCES keychain_win.cpp)
if (!USE_CREDENTIAL_STORE)
if (NOT USE_CREDENTIAL_STORE)
list(APPEND qtkeychain_LIBRARIES crypt32)
list(APPEND qtkeychain_SOURCES plaintextstore.cpp)
endif()