diff options
author | xengineering <me@xengineering.eu> | 2025-03-21 22:23:47 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-21 22:23:47 +0100 |
commit | 2430e8557685a8af292ae82ca11ec59acb365390 (patch) | |
tree | b830cef277b4a88338342d009ead9f0519885e18 /fw/CMakeLists.txt | |
parent | b912c63ca9724a31f57226a44e87954e4fbd46c4 (diff) | |
download | iot-contact-2430e8557685a8af292ae82ca11ec59acb365390.tar iot-contact-2430e8557685a8af292ae82ca11ec59acb365390.tar.zst iot-contact-2430e8557685a8af292ae82ca11ec59acb365390.zip |
fw: http: Add HTML resource /
This provides the index HTML page.
Diffstat (limited to 'fw/CMakeLists.txt')
-rw-r--r-- | fw/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fw/CMakeLists.txt b/fw/CMakeLists.txt index 32a4571..d07494b 100644 --- a/fw/CMakeLists.txt +++ b/fw/CMakeLists.txt @@ -22,4 +22,14 @@ target_sources(app "${CMAKE_CURRENT_SOURCE_DIR}/src/main.c" "${CMAKE_CURRENT_SOURCE_DIR}/src/syslog.c" "${CMAKE_CURRENT_SOURCE_DIR}/src/mac.c" + "${CMAKE_CURRENT_SOURCE_DIR}/src/http.c" ) + +zephyr_linker_sources(SECTIONS sections-rom.ld) +zephyr_linker_section(NAME http_resource_desc_http_service + KVMA RAM_REGION GROUP RODATA_REGION + SUBALIGN ${CONFIG_LINKER_ITERABLE_SUBALIGN}) + +set(gen_dir ${ZEPHYR_BINARY_DIR}/include/generated/) +set(source_file_index src/html/index.html) +generate_inc_file_for_target(app ${source_file_index} ${gen_dir}/index.html.gz.inc --gzip) |