mirror of https://github.com/thesofproject/sof.git
16 lines
314 B
CMake
16 lines
314 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(sample_sof)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|
|
|
|
zephyr_library_include_directories(app PUBLIC
|
|
${sof_module}/src/arch/xtensa/include
|
|
${sof_module}/src/include
|
|
)
|