Fix building without features

* Fix #3684 - Include YubiKey headers in CLI tests 

* Skip building testguibrowser if browser integration is disabled

* Cleanup test CMakeLists
This commit is contained in:
Jonathan White
2019-10-27 21:37:42 -04:00
parent 1ab8a9f42c
commit 178bea6bbc
4 changed files with 13 additions and 17 deletions

View File

@@ -75,3 +75,10 @@ YubiKey::ChallengeResult YubiKey::challenge(int slot, bool mayBlock, const QByte
return ERROR;
}
bool YubiKey::checkSlotIsBlocking(int slot, QString& errorMessage)
{
Q_UNUSED(slot);
Q_UNUSED(errorMessage);
return false;
}