2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-09-28 07:30:42 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2018-09-21 03:15:20 +08:00
|
|
|
|
2020-05-29 08:58:50 +08:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2020-06-03 07:51:16 +08:00
|
|
|
project(jwt)
|
2018-09-21 03:15:20 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|
|
|
|
zephyr_include_directories(${APPLICATION_SOURCE_DIR}/src/tls_config)
|