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

540 B

@page installation_manual Manual @tableofcontents

Building from Source (Official)

Clone and build the project using CMake:

git clone https://github.com/ArthurSonzogni/FTXUI.git
cd FTXUI
cmake -S . -B build -DFTXUI_ENABLE_INSTALL=ON
cmake --build build -j
sudo cmake --install build

Link the libraries in your application:

g++ main.cpp -lftxui-component -lftxui-dom -lftxui-screen
Previous
Getting Started