From 7deeb4469fa2f983e704f7bd3d3f816fd563c1f5 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Fri, 15 Dec 2017 11:50:54 +0300 Subject: [PATCH] Fix building on Windows without credential store --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16ad4c5..2f6dea0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()