mirror of https://github.com/thesofproject/sof.git
14 lines
370 B
CMake
14 lines
370 B
CMake
|
|
cmake_minimum_required(VERSION 3.20)
|
|
set(CMAKE_TOOLCHAIN_FILE "${CMAKE_CURRENT_LIST_DIR}/../../cmake/xtensa-toolchain.cmake")
|
|
|
|
project(dummy)
|
|
|
|
# list of modules to be built and included into this loadable library
|
|
set(MODULES_LIST dummy)
|
|
|
|
# toml file for rimage to generate manifets
|
|
set(TOML "${CMAKE_CURRENT_LIST_DIR}/dummy_mtl.toml")
|
|
|
|
include(../../cmake/build.cmake)
|