feat(cli): enhance agent with FTXUI components for improved UI

- Added FTXUI components (screen, dom, component) to the agent's CMake configuration, enabling advanced UI capabilities.
- Removed unnecessary include statement from general_commands.cc to streamline the code.

Benefits:
- Improved modularity and extensibility of the agent's UI features, facilitating future enhancements.
This commit is contained in:
scawful
2025-10-12 02:04:56 -04:00
parent b7e9ff1f21
commit 45e669ce7a
2 changed files with 3 additions and 2 deletions

View File

@@ -82,6 +82,9 @@ set(_yaze_agent_link_targets
yaze_emulator
${ABSL_TARGETS}
yaml-cpp
ftxui::screen
ftxui::dom
ftxui::component
)
target_link_libraries(yaze_agent PUBLIC ${_yaze_agent_link_targets})

View File

@@ -1,5 +1,3 @@
#include "cli/handlers/commands.h"
#include <algorithm>
#include <filesystem>
#include <fstream>