-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1568 from MichaelDvP/dev
- Loading branch information
Showing
19 changed files
with
133 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# ArduinoJson - https://arduinojson.org | ||
# Copyright © 2014-2024, Benoit BLANCHON | ||
# MIT License | ||
|
||
cmake_minimum_required(VERSION 3.15) | ||
|
||
if(ESP_PLATFORM) | ||
# Build ArduinoJson as an ESP-IDF component | ||
idf_component_register(INCLUDE_DIRS src) | ||
return() | ||
endif() | ||
|
||
project(ArduinoJson VERSION 7.0.2) | ||
|
||
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) | ||
include(CTest) | ||
endif() | ||
|
||
add_subdirectory(src) | ||
|
||
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME AND BUILD_TESTING) | ||
include(extras/CompileOptions.cmake) | ||
add_subdirectory(extras/tests) | ||
add_subdirectory(extras/fuzzing) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "7.0.2" | ||
description: >- | ||
A simple and efficient JSON library for embedded C++. | ||
⭐ 6444 stars on GitHub! | ||
Supports serialization, deserialization, MessagePack, streams, filtering, and more. | ||
Fully tested and documented. | ||
url: https://arduinojson.org/ | ||
files: | ||
exclude: | ||
- "**/.vs/**/*" | ||
- ".devcontainer/**/*" | ||
- "examples/**/*" | ||
- "extras/**/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "ArduinoJson", | ||
"keywords": "json, rest, http, web", | ||
"description": "A simple and efficient JSON library for embedded C++. ⭐ 6444 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.", | ||
"homepage": "https://arduinojson.org/?utm_source=meta&utm_medium=library.json", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bblanchon/ArduinoJson.git" | ||
}, | ||
"version": "7.0.2", | ||
"authors": { | ||
"name": "Benoit Blanchon", | ||
"url": "https://blog.benoitblanchon.fr" | ||
}, | ||
"export": { | ||
"include": ["src", "examples", "LICENSE.txt", "ArduinoJson.h"] | ||
}, | ||
"frameworks": "*", | ||
"platforms": "*", | ||
"build": { | ||
"libArchive": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name=ArduinoJson | ||
version=7.0.2 | ||
author=Benoit Blanchon <blog.benoitblanchon.fr> | ||
maintainer=Benoit Blanchon <blog.benoitblanchon.fr> | ||
sentence=A simple and efficient JSON library for embedded C++. | ||
paragraph=⭐ 6444 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented. | ||
category=Data Processing | ||
url=https://arduinojson.org/?utm_source=meta&utm_medium=library.properties | ||
architectures=* | ||
repository=https://github.com/bblanchon/ArduinoJson.git | ||
license=MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.