mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
TouchID support refactoring (#8311)
Fixes #7695 - Properly set compile flags based on availability of watch unlock in the API.
This commit is contained in:
parent
15b9e82f93
commit
bd809ba90b
8 changed files with 232 additions and 177 deletions
5
cmake/compiler-checks/macos/control_biometry_support.mm
Normal file
5
cmake/compiler-checks/macos/control_biometry_support.mm
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <Security/Security.h>
|
||||
|
||||
int main() {
|
||||
return static_cast<int>(kSecAccessControlBiometryCurrentSet);
|
||||
}
|
5
cmake/compiler-checks/macos/control_touch_id_support.mm
Normal file
5
cmake/compiler-checks/macos/control_touch_id_support.mm
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <Security/Security.h>
|
||||
|
||||
int main() {
|
||||
return static_cast<int>(kSecAccessControlTouchIDCurrentSet);
|
||||
}
|
5
cmake/compiler-checks/macos/control_watch_support.mm
Normal file
5
cmake/compiler-checks/macos/control_watch_support.mm
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <Security/Security.h>
|
||||
|
||||
int main() {
|
||||
return static_cast<int>(kSecAccessControlWatch);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue