[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: ftxui: Build shared libraries.
From: |
guix-commits |
Subject: |
04/05: gnu: ftxui: Build shared libraries. |
Date: |
Wed, 18 Sep 2024 07:31:50 -0400 (EDT) |
z572 pushed a commit to branch master
in repository guix.
commit 736c0ad3243f7393a482305dbedb48e16ea3fec9
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Sep 18 15:59:35 2024 +0800
gnu: ftxui: Build shared libraries.
* gnu/packages/cpp.scm (ftxui)[arguments]<#:configure-flags>: Add
-DBUILD_SHARED_LIBS=ON.
Change-Id: I0c4578febcbd40076dc0b85505406e16d4b65ba1
---
gnu/packages/cpp.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index da2cfcab6e..af1d0daba9 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -3050,7 +3050,8 @@ queues, resource pools, strings, etc.
(arguments
(list #:configure-flags
#~(list "-DFTXUI_BUILD_TESTS:BOOL=ON"
- "-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF")))
+ "-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF"
+ "-DBUILD_SHARED_LIBS=ON")))
(home-page "https://github.com/ArthurSonzogni/FTXUI")
(synopsis "C++ Functional Terminal User Interface")
(description