gnu: ftxui: Build ftxui-benchmark.

* gnu/packages/cpp.scm (ftxui)[native-inputs]: Add benchmark.
[arguments]: Remove #:phases.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
Artyom V. Poptsov 2023-05-08 10:11:10 +03:00 committed by 宋文武
parent 1fa30c597b
commit cc47c5277d
No known key found for this signature in database
GPG key ID: D415BF253B515976

View file

@ -67,6 +67,7 @@ (define-module (gnu packages cpp)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages assembly) #:use-module (gnu packages assembly)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
#:use-module (gnu packages benchmark)
#:use-module (gnu packages boost) #:use-module (gnu packages boost)
#:use-module (gnu packages build-tools) #:use-module (gnu packages build-tools)
#:use-module (gnu packages c) #:use-module (gnu packages c)
@ -2444,23 +2445,11 @@ (define-public ftxui
"01h59ln8amsj6ymxmsxhmslld2yp003n82fg3mphgkrh6lf22h6y")) "01h59ln8amsj6ymxmsxhmslld2yp003n82fg3mphgkrh6lf22h6y"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (list googletest)) (native-inputs (list googletest benchmark))
(arguments (arguments
(list #:configure-flags (list #:configure-flags
#~(list "-DFTXUI_BUILD_TESTS:BOOL=ON" #~(list "-DFTXUI_BUILD_TESTS:BOOL=ON"
"-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF") "-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF")))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-cmake-tests
(lambda _
(substitute* "cmake/ftxui_test.cmake"
(("NOT googletest_POPULATED")
"FALSE"))
;; Disable benchmarks for a while as they require bundled Google
;; benchmark and when the 'googlebenchmark' is unbundled, there's
;; a CMake configuration error.
;; TODO: fetch googlebenchmark then renable test
(truncate-file "cmake/ftxui_benchmark.cmake" 0))))))
(home-page "https://github.com/ArthurSonzogni/FTXUI") (home-page "https://github.com/ArthurSonzogni/FTXUI")
(synopsis "C++ Functional Terminal User Interface") (synopsis "C++ Functional Terminal User Interface")
(description (description