mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00

This patch add support for using cJSON as platformIO library. Simply clone the cJSON repo in PlatformIO Project under "<project_root>/lib" directory. PlatformIO Library dependency finder will automatically find it without any extra work needed to use the library in project. Signed-off-by: Ajay Bhargav <contact@rickeyworld.info>
19 lines
199 B
JSON
19 lines
199 B
JSON
{
|
|
"name": "cJSON",
|
|
"version": "1.7.14",
|
|
"frameworks": "*",
|
|
"platforms": "*",
|
|
"dependencies": [
|
|
],
|
|
"build": {
|
|
"srcFilter": [
|
|
"-<*>",
|
|
"+<cJSON.c>"
|
|
],
|
|
"flags": [
|
|
"-I ./"
|
|
]
|
|
}
|
|
}
|
|
|