Tasmota/lib/libesp32/berry/library.json

33 lines
739 B
JSON
Raw Normal View History

2021-04-12 18:53:35 +01:00
{
"name":"Berry",
"description":"Berry scripting language for Tasmota32",
"keywords":"berry, script",
"authors":
{
"name": "Guan Wenliang <skiars@qq.com>, ",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/Skiars/berry"
},
"version": "7.0",
"license": "MIT License",
2021-12-18 12:26:16 +00:00
"frameworks": "arduino",
"platforms": "espressif32",
2021-04-12 18:53:35 +01:00
"build": {
2022-01-05 08:50:38 +00:00
"includeDir": "generate",
2021-04-12 18:53:35 +01:00
"srcFilter": [
"+<*.c>",
"+<../default/*.c>",
"+<../default/*.cpp>",
"+<../default/*.hpp>",
2022-01-05 08:50:38 +00:00
"+<../generate/*.h>",
2021-04-12 18:53:35 +01:00
"+<*.cpp>",
"+<*.h>"
],
2023-10-06 21:42:38 +01:00
"flags": [ "-I$PROJECT_DIR/tasmota", "-DCOMPILE_BERRY_LIB", "-includeesp_idf_version.h" ]
2021-04-12 18:53:35 +01:00
}
2022-01-05 08:50:38 +00:00
}