-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrary.json
42 lines (42 loc) · 1.09 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
36
37
38
39
40
41
42
{
"name": "RaftCore",
"version": "1.18.1",
"description": "Core elements for the Raft ESP32 framework",
"keywords": "esp32, esp32s3, framework",
"category": "Communication",
"repository": {
"type": "git",
"url": "https://github.com/robdobsn/RaftCore"
},
"authors": [{
"name": "Rob Dobson",
"email": "[email protected]",
"url": "https://robdobson.com",
"maintainer": true
}],
"license": "MIT",
"homepage": "https://github.com/robdobsn/RaftCore",
"frameworks": "*",
"platforms": "*",
"export": {
"include": ["components/**"]
},
"headers": "RaftCore.h",
"dependencies": [{
"name": "littlefs",
"version": "https://github.com/joltwallet/esp_littlefs.git"
}],
"build": {
"srcDir": "components",
"srcFilter": [
"+<**/*.c>",
"+<**/*.cpp>",
"+<**/*.h>"
],
"flags": [
"!python scripts/BuildFlags.py"
],
"extraScript": "scripts/LibraryBuildScript.py",
"libArchive": false
}
}