mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
45 lines
959 B
CMake
45 lines
959 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2020
|
|
# MIT License
|
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
project(ArduinoJson)
|
|
|
|
set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY true)
|
|
|
|
enable_testing()
|
|
|
|
add_definitions(-DARDUINOJSON_DEBUG=1)
|
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.8)
|
|
add_compile_options(-g -Og)
|
|
else()
|
|
add_compile_options(-g -O0)
|
|
endif()
|
|
endif()
|
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.0)
|
|
add_compile_options(-g -Og)
|
|
else()
|
|
add_compile_options(-g -O0)
|
|
endif()
|
|
endif()
|
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
|
|
add_compile_options(-g -Og)
|
|
else()
|
|
add_compile_options(-g -O0)
|
|
endif()
|
|
endif()
|
|
|
|
if(${COVERAGE})
|
|
set(CMAKE_CXX_FLAGS "-fprofile-arcs -ftest-coverage")
|
|
endif()
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(extras/tests)
|
|
add_subdirectory(extras/fuzzing)
|