From d2a0fbd1d427e5fbdfb39f8f1b245f4363a5ab07 Mon Sep 17 00:00:00 2001
From: David Dormagen <czapper@gmx.de>
Date: Tue, 26 Jan 2021 08:18:10 +0100
Subject: [PATCH] [ci] link boost statically

This allows the CI-built tracker to actually be loaded from the AppImage build without having the exact same boost version installed system-wide..
---
 ci/configure.py | 2 ++
 1 file changed, 2 insertions(+)
 mode change 100755 => 100644 ci/configure.py

diff --git a/ci/configure.py b/ci/configure.py
old mode 100755
new mode 100644
index 9d513a3..cd15fee
--- a/ci/configure.py
+++ b/ci/configure.py
@@ -26,6 +26,8 @@ if __name__ == "__main__":
     command += define("CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY", "ON")
     command += define_env("VCPKG_TARGET_TRIPLET")
 
+    command += define("Boost_USE_STATIC_LIBS", "ON")
+
     if system() == "Windows":
         command += define("PACKAGE_MSI", "ON")
     elif system() == "Linux":
-- 
GitLab