From 650d35038dcc314f66fb0b6a5f7cf6491a0d9fdd Mon Sep 17 00:00:00 2001 From: LordGrey <48840279+Lord-Grey@users.noreply.github.com> Date: Sat, 20 May 2023 20:58:09 +0200 Subject: [PATCH] Update SYSTEM_LIBS_SKIP list --- cmake/Dependencies.cmake | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index a727b0ad..54665b6b 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -153,6 +153,35 @@ macro(DeployLinux TARGET) "libutil" "libX11" "libz" + "libcrypt" + "libdbus" + "liblzma" + "libpcre" + "libsystemd" + "libusb" + "libuuid" + "libICE" + "libSM" + "libXau" + "libXdmcp" + "libXext" + "libXrandr" + "libXrender" + "libasound" + "libbsd" + "libglib" + "libgraphite2" + "libharfbuzz" + "liblz4" + "libpcre2" + "libpng16" + "libturbojpeg" + "libxcb-image" + "libxcb-randr" + "libxcb-render" + "libxcb-shm" + "libxcb-util" + "libxcb" ) if (ENABLE_DISPMANX) @@ -161,7 +190,9 @@ macro(DeployLinux TARGET) # Extract dependencies ignoring the system ones get_prerequisites(${TARGET_FILE} DEPENDENCIES 0 1 "" "") - + + message(STATUS "Dependencies for target file: ${DEPENDENCIES}") + # Append symlink and non-symlink dependencies to the list set(PREREQUISITE_LIBS "") foreach(DEPENDENCY ${DEPENDENCIES})