mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-10-01 17:29:07 +08:00
39
tutorial/build-with-nxxm.md
Normal file
39
tutorial/build-with-nxxm.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# Add dependency
|
||||
|
||||
.nxxm/deps
|
||||
~~~json
|
||||
{
|
||||
"arthursonzogni/ftxui": {}
|
||||
}
|
||||
~~~
|
||||
|
||||
# Example project
|
||||
|
||||
main.cpp
|
||||
~~~cpp
|
||||
#include "ftxui/screen/screen.hpp"
|
||||
#include "ftxui/dom/elements.hpp"
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, const char *argv[]) {
|
||||
using namespace ftxui;
|
||||
auto document =
|
||||
hbox(
|
||||
text(L"left") | bold | border,
|
||||
text(L"middle") | flex | border,
|
||||
text(L"right") | border
|
||||
);
|
||||
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
||||
Render(screen, document.get());
|
||||
|
||||
std::cout << screen.ToString();
|
||||
|
||||
return 0;
|
||||
}
|
||||
~~~
|
||||
|
||||
# Build
|
||||
|
||||
~~~
|
||||
nxxm . -t clang-cxx17
|
||||
~~~
|
Reference in New Issue
Block a user