-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.json
75 lines (75 loc) · 1.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mini Thread",
"keywords": ["esp32", "task", "mutex", "queue", "convar", "container", "frameork", "socket"],
"description": "Mini Thread is a esp32 IoT freamework for useful thinks",
"authors":
{
"name": "RoseLeBlood",
"email": "[email protected]",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/RoseLeBlood/MiniThread.git"
},
"version": "2.29.8995.57",
"frameworks": "espidf",
"platforms": "espressif32",
"homepage": "https://roseleblood.github.io/mnthread-docs/index.html",
"examples": [
{
"name": "empty",
"base": "examples/empty",
"files": [ "src/empty-project.cpp" ]
},
{
"name": "simple-mutex",
"base": "examples/simple-mutex",
"files": [ "src/simple-mutex.cpp" ]
},
{
"name": "simple-task",
"base": "examples/simple-task",
"files": [ "src/simple-task.cpp" ]
},
{
"name": "simple-tasklet",
"base": "examples/simple-tasklet",
"files": [ "src/simple-tasklet.cpp" ]
},
{
"name": "simple-timer",
"base": "examples/simple-timer",
"files": [ "src/simple-timer.cpp" ]
},
{
"name": "mempool",
"base": "examples/mempool",
"files": [ "src/mempool.cpp" ]
}
],
"export": {
"exclude":
[
"doc/*",
"doc",
"images",
"release",
"workspace",
"*.sh",
"configure",
"Makefile.in",
"Makefile",
".git",
".pio",
"platformio.*",
".gitignore",
"example/.git",
"*.s"
]
},
"build": {
"flags": "-DRELEASE"
}
}