blob: 368cbc0919acb133a262494881d89851d60e696c [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(cmsis_rtos_v1)
target_include_directories(app PRIVATE ${ZEPHYR_BASE}/include/portability)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})