You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
562 B
25 lines
562 B
# 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.3)
|
|
|
|
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()
|
|
|