This is not a sample of an audio subsystem in zephyr, it is a sample that completely depends on sof and its audio support. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
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
|
|
)
|