ab7c5a7d4e
Some improvements to netutils/cjson and testing/unity * netutils/cjson/Makefile: fix the error when creating Make.dep * testing/unity/Makefile: fix the error when creating Make.dep * include/.gitignore: ignore cJSON headers * netutils/cjson/Kconfig: update default version to 1.7.12. Previous releases raise compilation warnings about redefined true/false Approved-by: Gregory Nutt <gnutt@nuttx.org>
24 lines
509 B
Plaintext
24 lines
509 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config NETUTILS_CJSON
|
|
bool "cJSON library (current version)"
|
|
default n
|
|
select LIBC_FLOATINGPOINT
|
|
---help---
|
|
Enables the cJSON library.
|
|
|
|
if NETUTILS_CJSON
|
|
|
|
config NETUTILS_CJSON_URL
|
|
string "URL where cJSON library can be downloaded"
|
|
default "https://github.com/DaveGamble/cJSON/archive"
|
|
|
|
config NETUTILS_CJSON_VERSION
|
|
string "Version number"
|
|
default "1.7.12"
|
|
|
|
endif
|