2019-04-06 09:08:09 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2017-10-27 15:43:34 +02:00
|
|
|
zephyr_library()
|
|
|
|
|
|
|
|
if(CONFIG_HTTP_PARSER_STRICT)
|
|
|
|
zephyr_library_compile_definitions(HTTP_PARSER_STRICT)
|
|
|
|
endif()
|
|
|
|
|
2019-07-28 21:41:42 +03:00
|
|
|
zephyr_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
|
|
|
2017-10-27 15:43:34 +02:00
|
|
|
zephyr_library_sources_if_kconfig(http_parser.c)
|
|
|
|
zephyr_library_sources_if_kconfig(http_parser_url.c)
|
2019-07-28 21:41:42 +03:00
|
|
|
zephyr_library_sources_if_kconfig(http_client.c)
|