We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f4d5a commit abd969bCopy full SHA for abd969b
1 file changed
src/audio/module_adapter/CMakeLists.txt
@@ -139,11 +139,15 @@ if(NOT CONFIG_COMP_MODULE_SHARED_LIBRARY_BUILD)
139
endif()
140
141
if(CONFIG_COMP_DOLBY_DAX_AUDIO_PROCESSING)
142
+ target_include_directories(sof PRIVATE ${PROJECT_SOURCE_DIR}/third_party/include)
143
add_local_sources(sof module/dolby/dax.c)
144
if (CONFIG_COMP_DOLBY_DAX_AUDIO_PROCESSING_MOCK)
145
add_local_sources(sof module/dolby/dax_mock.c)
146
else()
- sof_add_static_library(dax_effect ${sof_top_dir}/third_party/lib/libdax.a)
147
+ target_link_libraries(sof PRIVATE m)
148
+ target_link_libraries(sof PRIVATE c)
149
+ sof_add_static_library(dax_effect
150
+ ${PROJECT_SOURCE_DIR}/third_party/lib/libdax.a)
151
152
153
0 commit comments