0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 12:22:16 +02:00

Add missing header to cmakelists when building without YubiKey

This commit is contained in:
Weslly 2018-11-08 13:42:26 -02:00 committed by Jonathan White
parent 91160c5f36
commit d7f5a15f68

View File

@ -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)