mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
FTXUI is a simple cross-platform C++ library for terminal based user interfaces. Signed-off-by: Gilles Talis <gilles.talis@gmail.com> [Julien: remove FTXUI_SOURCE to use the default archive name] Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
438 B
Plaintext
15 lines
438 B
Plaintext
config BR2_PACKAGE_FTXUI
|
|
bool "ftxui"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR # std::wstring()
|
|
help
|
|
FTXUI is a simple cross-platform C++ library
|
|
for terminal based user interfaces
|
|
|
|
https://arthursonzogni.github.io/FTXUI/
|
|
|
|
comment "ftxui needs a toolchain w/ C++, wchar and threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR
|