-
Notifications
You must be signed in to change notification settings - Fork 390
/
library.json
55 lines (55 loc) · 1.35 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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "plog",
"version": "1.1.10",
"description": "Portable, simple and extensible C++ logging library",
"keywords": [
"plog",
"log",
"logger",
"logging"
],
"repository": {
"type": "git",
"url": "https://github.com/SergiusTheBest/plog.git"
},
"authors": {
"name": "Sergey Podobry",
"email": "[email protected]",
"maintainer": true
},
"license": "MIT",
"frameworks": "*",
"platforms": "*",
"headers": [
"plog/Log.h",
"plog/Init.h",
"plog/Appenders/ArduinoAppender.h",
"plog/Formatters/CsvFormatter.h",
"plog/Formatters/FuncMessageFormatter.h",
"plog/Formatters/MessageOnlyFormatter.h",
"plog/Formatters/TxtFormatter.h"
],
"examples": [
{
"name": "Arduino",
"base": "samples/Arduino",
"files": [
"platformio.ini",
"src/main.cpp"
]
}
],
"export": {
"include": [
"doc",
"include",
"samples/Arduino",
"LICENSE",
"README.md"
]
},
"build": {
"includeDir": "include"
}
}