define PIP_MICRO

detect AVR_GCC
add library.json
This commit is contained in:
Andrey
2022-01-14 14:37:51 +03:00
parent 1d9a39f792
commit 0504fa187e
6 changed files with 55 additions and 14 deletions

29
library.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "PIP",
"version": "2.33.0",
"keywords": "pip",
"description": "Platform-Independent Primitives",
"repository":
{
"type": "git",
"url": "https://git.shs.tools/SHS/pip.git"
},
"frameworks": "*",
"platforms": "*",
"dependencies": {"mike-matera/ArduinoSTL": "^1.3.2"},
"build":
{
"srcDir": "libs/main",
"srcFilter": [
"+<core/*.cpp>",
"+<core/*.h>",
"+<containers/*.cpp>",
"+<containers/*.h>"
],
"flags": [
"-std=c++11",
"-DPIP_MICRO"
],
"extraScript": "include_pip.py"
}
}