11 lines
407 B
CMake
11 lines
407 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|
|
|
|
generate_inc_file_for_target(app src/response_small.html.bin src/response_small.html.bin.inc)
|
|
generate_inc_file_for_target(app src/response_big.html.bin src/response_big.html.bin.inc)
|
|
|
|
include($ENV{ZEPHYR_BASE}/samples/net/common/common.cmake)
|