2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-08-10 20:44:56 +08:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2020-05-29 08:58:50 +08:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2019-01-31 16:23:40 +08:00
|
|
|
project(os_desc)
|
|
|
|
|
|
|
|
zephyr_library_include_directories(
|
2022-03-31 17:17:28 +08:00
|
|
|
${ZEPHYR_BASE}/subsys/usb/device/
|
2019-01-31 16:23:40 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|