Remove copying of library dependencies Since we are targeting building into an image, the widget build does not have to copy host library dependencies into the widget as it would when being built standalone with the SDK. Remove the copying, as runtime dependencies will be used to pull the libraries in. Upstream-Status: Inappropriate [embedded specific] Signed-off-by: Scott Murray diff --git a/libs/CMakeLists.txt b/libs/CMakeLists.txt index 8a955feb..5b097877 100644 --- a/libs/CMakeLists.txt +++ b/libs/CMakeLists.txt @@ -92,16 +92,11 @@ add_avs_library(SQLiteStorage ${AAC_HOME}/lib/libSQLiteStorage.so) add_avs_library(SystemSoundPlayer ${AAC_HOME}/lib/libSystemSoundPlayer.so) add_avs_library(TemplateRuntime ${AAC_HOME}/lib/libTemplateRuntime.so) add_avs_library(ToggleController ${AAC_HOME}/lib/libToggleController.so) -add_avs_library(curl ${AAC_HOME}/lib/libcurl.so.4) -add_avs_library(nghttp2 ${AAC_HOME}/lib/libnghttp2.so.14) -add_avs_library(opus ${AAC_HOME}/lib/libopus.so.0) -add_avs_library(sqlite3 ${AAC_HOME}/lib/libsqlite3.so.0) -if(EXISTS ${AAC_HOME}/lib/libpryon_lite.so.1.13) +if(EXISTS ${AAC_HOME}/lib/libAACEAmazonLiteEngine.so) add_aace_library(AACEAmazonLiteEngine) add_avs_library(AMAZONLITE ${AAC_HOME}/lib/libAMAZONLITE.so) add_avs_library(KeywordDetectorProvider ${AAC_HOME}/lib/libKeywordDetectorProvider.so) - add_avs_library(pryon_lite ${AAC_HOME}/lib/libpryon_lite.so.1.13) endif() if(EXISTS ${AAC_HOME}/share/cmake/AACESystemAudio.cmake)