From 389fab99a1fb3b74bbc7af5ddc8269a12fbe77ea Mon Sep 17 00:00:00 2001 From: Liam Girdwood Date: Tue, 1 Jul 2025 13:53:20 +0100 Subject: [PATCH] tools: ctl: use system alsa to build sof-ctl tool The SOF ctl tool is conservative with API and does not need a bleeding edge ALSA library so it can be built with system ALSA. Signed-off-by: Liam Girdwood --- tools/ctl/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/ctl/CMakeLists.txt b/tools/ctl/CMakeLists.txt index 5c4c2dd315b5..70735f88da65 100644 --- a/tools/ctl/CMakeLists.txt +++ b/tools/ctl/CMakeLists.txt @@ -4,9 +4,6 @@ add_executable(sof-ctl ctl.c ) -target_link_directories(sof-ctl BEFORE - PRIVATE "${SOF_ROOT_SOURCE_DIRECTORY}/../tools/lib") - target_link_libraries(sof-ctl PRIVATE "-lasound" ) @@ -16,7 +13,6 @@ target_compile_options(sof-ctl PRIVATE ) target_include_directories(sof-ctl PRIVATE - "${SOF_ROOT_SOURCE_DIRECTORY}/../tools/include" "${SOF_ROOT_SOURCE_DIRECTORY}/src/include" "${SOF_ROOT_SOURCE_DIRECTORY}" )