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.
23 lines
509 B
23 lines
509 B
#
|
|
# 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
|
|
|