FTXUI/doc/installation_xmake.md
2025-06-05 11:45:06 +02:00

537 B

@page installation_xmake XMake @tableofcontents

XMake Package (Unofficial)

FTXUI is available in the xmake-repo.

Example xmake.lua snippet:

add_requires("ftxui", {system = false})

target("demo")
    set_kind("binary")
    add_files("src/*.cpp")
    add_packages("ftxui")

Refer to the XMake documentation for further options.

Previous
Getting Started