forked from G4lile0/tinyGS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated ArduinoJson to 6.17.2 (1360b6a396e096365c917a5518cf29aeac6c9444)
- Loading branch information
Showing
368 changed files
with
10,187 additions
and
4,001 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: https://arduinojson.org/book/ |
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,14 @@ | ||
<!-- | ||
Before opening an issue, please read the FAQ: | ||
https://arduinojson.org/faq/ | ||
Please provide all the relevant information: | ||
* good title | ||
* short description of the problem | ||
* target platform | ||
* compiler model and version | ||
* MVCE (https://stackoverflow.com/help/mcve) | ||
* compiler output | ||
Good questions get fast answers! | ||
--> |
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,7 @@ | ||
# Configuration for Lock Threads - https://github.com/dessant/lock-threads | ||
|
||
# Number of days of inactivity before a closed issue or pull request is locked | ||
daysUntilLock: 30 | ||
|
||
# Comment to post before locking. Set to `false` to disable | ||
lockComment: 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// ArduinoJson - arduinojson.org | ||
// Copyright Benoit Blanchon 2014-2019 | ||
// Copyright Benoit Blanchon 2014-2020 | ||
// MIT License | ||
|
||
#include "src/ArduinoJson.h" |
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 |
---|---|---|
@@ -1,21 +1,19 @@ | ||
# ArduinoJson - arduinojson.org | ||
# Copyright Benoit Blanchon 2014-2019 | ||
# Copyright Benoit Blanchon 2014-2020 | ||
# MIT License | ||
|
||
cmake_minimum_required(VERSION 3.0) | ||
project(ArduinoJson) | ||
|
||
enable_testing() | ||
project(ArduinoJson VERSION 6.17.2) | ||
|
||
add_definitions(-DARDUINOJSON_DEBUG) | ||
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)") | ||
add_compile_options(-g -O0) | ||
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) | ||
include(CTest) | ||
endif() | ||
|
||
if(${COVERAGE}) | ||
set(CMAKE_CXX_FLAGS "-fprofile-arcs -ftest-coverage") | ||
endif() | ||
add_subdirectory(src) | ||
|
||
include_directories(${CMAKE_CURRENT_LIST_DIR}/src) | ||
add_subdirectory(extras/tests) | ||
add_subdirectory(extras/fuzzing) | ||
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
Oops, something went wrong.