parent
6b74d11b4d
commit
29024b356e
@ -1,5 +1,5 @@ |
|||||||
// ArduinoJson - https://arduinojson.org
|
// ArduinoJson - https://arduinojson.org
|
||||||
// Copyright © 2014-2022, Benoit BLANCHON
|
// Copyright © 2014-2023, Benoit BLANCHON
|
||||||
// MIT License
|
// MIT License
|
||||||
|
|
||||||
#include "src/ArduinoJson.h" |
#include "src/ArduinoJson.h" |
||||||
|
@ -1,6 +1,8 @@ |
|||||||
# ArduinoJson - https://arduinojson.org |
# ArduinoJson - https://arduinojson.org |
||||||
# Copyright © 2014-2022, Benoit BLANCHON |
# Copyright © 2014-2023, Benoit BLANCHON |
||||||
# MIT License |
# MIT License |
||||||
|
|
||||||
idf_component_register(SRCS "main.cpp" |
idf_component_register( |
||||||
INCLUDE_DIRS "") |
SRCS "main.cpp" |
||||||
|
INCLUDE_DIRS "" |
||||||
|
) |
||||||
|
@ -1,36 +0,0 @@ |
|||||||
# ArduinoJson - https://arduinojson.org |
|
||||||
# Copyright © 2014-2022, Benoit BLANCHON |
|
||||||
# MIT License |
|
||||||
|
|
||||||
if("cxx_nullptr" IN_LIST CMAKE_CXX_COMPILE_FEATURES) |
|
||||||
list(APPEND SOURCES nullptr.cpp) |
|
||||||
add_definitions(-DARDUINOJSON_HAS_NULLPTR=1) |
|
||||||
endif() |
|
||||||
|
|
||||||
if("cxx_auto_type" IN_LIST CMAKE_CXX_COMPILE_FEATURES AND "cxx_constexpr" IN_LIST CMAKE_CXX_COMPILE_FEATURES) |
|
||||||
list(APPEND SOURCES issue1120.cpp) |
|
||||||
endif() |
|
||||||
|
|
||||||
if("cxx_long_long_type" IN_LIST CMAKE_CXX_COMPILE_FEATURES) |
|
||||||
list(APPEND SOURCES use_long_long_0.cpp use_long_long_1.cpp) |
|
||||||
endif() |
|
||||||
|
|
||||||
if("cxx_range_for" IN_LIST CMAKE_CXX_COMPILE_FEATURES AND "cxx_generalized_initializers" IN_LIST CMAKE_CXX_COMPILE_FEATURES) |
|
||||||
list(APPEND SOURCES stl_containers.cpp) |
|
||||||
endif() |
|
||||||
|
|
||||||
if(NOT SOURCES) |
|
||||||
return() |
|
||||||
endif() |
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 11) |
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON) |
|
||||||
|
|
||||||
add_executable(Cpp11Tests ${SOURCES}) |
|
||||||
|
|
||||||
add_test(Cpp11 Cpp11Tests) |
|
||||||
|
|
||||||
set_tests_properties(Cpp11 |
|
||||||
PROPERTIES |
|
||||||
LABELS "Catch" |
|
||||||
) |
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue