blob: 61e9051ce36f2d9a0458aab9a0a4b866ffe44dd2 [file] [log] [blame]
# Copyright (c) 2018-2020 O.S.Systems
#
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
# This application has its own Kconfig options.
set(KCONFIG_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/Kconfig)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(updatehub)
target_sources(app PRIVATE src/main.c)
if(CONFIG_UPDATEHUB_DTLS)
set(gen_dir ${ZEPHYR_BINARY_DIR}/include/generated/)
foreach(inc_file
servercert.der
privkey.der
)
generate_inc_file_for_target(
${ZEPHYR_CURRENT_LIBRARY}
src/certificates/${inc_file}
${gen_dir}/${inc_file}.inc
)
endforeach()
endif()