22 lines
577 B
CMake
22 lines
577 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/subsys/net/ip)
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|
|
|
|
# List of files that are used to generate .h file that can be included
|
|
# into .c file.
|
|
foreach(inc_file
|
|
echo-apps-cert.der
|
|
echo-apps-key.der
|
|
)
|
|
generate_inc_file_for_target(
|
|
app
|
|
src/${inc_file}
|
|
${ZEPHYR_BINARY_DIR}/include/generated/${inc_file}.inc
|
|
)
|
|
endforeach()
|
|
|
|
target_link_libraries_ifdef(CONFIG_MBEDTLS app mbedTLS)
|