From d7f5a15f682f64830050ba99980529ff9f6884fb Mon Sep 17 00:00:00 2001 From: Weslly Date: Thu, 8 Nov 2018 13:42:26 -0200 Subject: [PATCH] Add missing header to cmakelists when building without YubiKey --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4c7620063..5cd974a98 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -239,7 +239,7 @@ endif() if(WITH_XC_YUBIKEY) list(APPEND keepassx_SOURCES keys/drivers/YubiKey.cpp) else() - list(APPEND keepassx_SOURCES keys/drivers/YubiKeyStub.cpp) + list(APPEND keepassx_SOURCES keys/drivers/YubiKey.h keys/drivers/YubiKeyStub.cpp) endif() if(WITH_XC_TOUCHID)