From 4b4344664b5e5a1b8977e319a580ee5afc14de20 Mon Sep 17 00:00:00 2001
From: Johann Dreo
Date: Mon, 7 Apr 2025 14:50:03 +0200
Subject: [PATCH] update(README): link to cmake-gui, citation ref
---
README.md | 36 +++++++++++++++++++++++++++++++-----
docs/index.html | 4 ++--
2 files changed, 33 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index ff158606d..78f5c96fe 100644
--- a/README.md
+++ b/README.md
@@ -168,7 +168,7 @@ It is, for instance, easy to start with a simple local search, then add multi-ob
Paradiseo is mainly developed under Linux operating systems, where its dependencies and the C++ toolchain are easy to install. Recent versions have been tested with gcc and clang compilers.
-Stable versions should however work on Windows and any Unix-like operating system with a standard-conforming C++ development system.
+Stable versions should however work on Windows and any Unix-like operating system with a standard-conforming C++ development system.
# Code
@@ -195,7 +195,7 @@ The build chain uses the classical workflow of CMake. The recommended method is
Under Linux, the default is make, and a build command is straitghtforward: `mkdir build ; cd build ; cmake .. && make -j`.
-There is, however, several build options which you may want to switch. To see them, we recommend the use of a CMake gui, like ccmake or cmake-gui . On the command line, you can see the available options with: `cmake -LH ..` . Those options can be set with the `-D
There is, however, several build options which you may want to switch.
- To see them, we recommend the use of a CMake gui, like ccmake or cmake-gui.
+ To see them, we recommend the use of a CMake gui, like ccmake (available through the cmake-curses-gui package in Debian/Ubuntu) or cmake-gui.
On the command line, you can see the available options with: cmake -LH ...
Those options can be set with the -D<option>=<value> argument to cmake.