Merge pull request #106 from d1vanov/master
Fix building on Windows without credential store
This commit is contained in:
commit
f8321af271
|
@ -118,7 +118,7 @@ add_definitions( -Wall )
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
list(APPEND qtkeychain_SOURCES keychain_win.cpp)
|
list(APPEND qtkeychain_SOURCES keychain_win.cpp)
|
||||||
if (!USE_CREDENTIAL_STORE)
|
if (NOT USE_CREDENTIAL_STORE)
|
||||||
list(APPEND qtkeychain_LIBRARIES crypt32)
|
list(APPEND qtkeychain_LIBRARIES crypt32)
|
||||||
list(APPEND qtkeychain_SOURCES plaintextstore.cpp)
|
list(APPEND qtkeychain_SOURCES plaintextstore.cpp)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue