Description: Allow injection of additional libraries to link against
 DEB_LDFLAGS_MAINT_APPEND is included *before* the actual  link targets,
 so we cannot use it for injecting libraries
Author: IOhannes m zmölnig
Origin: Debian
Forwarded: not-needed
Last-Update: 2025-08-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- giada.orig/CMakeLists.txt
+++ giada/CMakeLists.txt
@@ -808,6 +808,9 @@
 
 endif()
 
+set(EXTRA_LIBRARIES "" CACHE STRING "Additional libraries to link against")
+list(APPEND LIBRARIES ${EXTRA_LIBRARIES})
+
 # ------------------------------------------------------------------------------
 # Finalize 'giada' target (main executable).
 # ------------------------------------------------------------------------------
