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