forked from goToMain/libosdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
35 lines (35 loc) · 1.1 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "LibOSDP",
"version": "3.0.8",
"description": "A cross-platform open source implementation of IEC 60839-11-5 Open Supervised Device Protocol (OSDP). The protocol is intended to improve interoperability among access control and security products. It supports Secure Channel (SC) for encrypted and authenticated communication between configured devices.",
"authors": [{
"name": "Siddharth Chandrasekaran",
"email": "[email protected]"
}],
"license": "Apache-2.0",
"keywords": ["OSDP", "LibOSDP", "CP", "PD", "ACS"],
"frameworks": ["arduino"],
"dependencies": [],
"build": {
"srcFilter": [
"+<**/*.c>",
"-<osdp_diag.c>",
"-<crypto/mbedtls.c>",
"-<crypto/openssl.c>",
"+<../utils/src/disjoint_set.c>",
"+<../utils/src/list.c>",
"+<../utils/src/logger.c>",
"+<../utils/src/queue.c>",
"+<../utils/src/slab.c>",
"+<../utils/src/utils.c>",
"+<../platformio/platformio.cpp>"
],
"includeDir": ".",
"flags": [
"-I include",
"-I utils/include",
"-I platformio",
"-D __BARE_METAL__"
]
}
}