56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"$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": "sergey.podobry@gmail.com",
|
|
"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"
|
|
}
|
|
}
|