From d9c62b36780b410431123d8ffb1ddc6b1bb0899d Mon Sep 17 00:00:00 2001 From: Caio Reis <121648163+fromcaio@users.noreply.github.com> Date: Fri, 5 Dec 2025 05:04:49 -0300 Subject: [PATCH] Fix cmake command in manual installation (#1159) CMake Error: -D must be followed with VAR=VALUE --- doc/installation_manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/installation_manual.md b/doc/installation_manual.md index 56c397201..3a1fc221c 100644 --- a/doc/installation_manual.md +++ b/doc/installation_manual.md @@ -8,7 +8,7 @@ Clone and build the project using CMake: ```bash git clone https://github.com/ArthurSonzogni/FTXUI.git cd FTXUI -cmake -S . -B build -DFTXUI_ENABLE_INSTALL=ON -D +cmake -S . -B build -D FTXUI_ENABLE_INSTALL=ON cmake --build build -j sudo cmake --install build ```