2019-06-02 03:33:40 +08:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2019-01-15 09:49:50 +08:00
|
|
|
add_subdirectory(buffer)
|
|
|
|
add_subdirectory(component)
|
2020-04-28 14:17:37 +08:00
|
|
|
add_subdirectory(pcm_converter)
|
2019-02-11 20:26:53 +08:00
|
|
|
if(CONFIG_COMP_MIXER)
|
|
|
|
add_subdirectory(mixer)
|
|
|
|
endif()
|
2019-01-15 09:49:50 +08:00
|
|
|
add_subdirectory(pipeline)
|
2019-02-04 19:45:42 +08:00
|
|
|
if(CONFIG_COMP_VOLUME)
|
|
|
|
add_subdirectory(volume)
|
|
|
|
endif()
|
2019-07-22 17:53:02 +08:00
|
|
|
if(CONFIG_COMP_MUX)
|
|
|
|
add_subdirectory(mux)
|
|
|
|
endif()
|
2019-02-20 18:57:21 +08:00
|
|
|
if(CONFIG_COMP_SEL)
|
|
|
|
add_subdirectory(selector)
|
|
|
|
endif()
|
2019-07-22 17:53:02 +08:00
|
|
|
|