From 4af2aca9ec63f3772fe59db3125b591131f2474a Mon Sep 17 00:00:00 2001 From: Christian Halaszovich Date: Fri, 20 May 2022 13:01:20 +0200 Subject: [PATCH] corrected build commands --- doc/usage/installation.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 6008d23..03b2077 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -105,13 +105,16 @@ Usually, these commands should work to build and install from the terminal: .. code-block:: bash + git clone https://github.com/ChrisHal/PMbrowser.git + mkdir PMbrowser_build + cd PMbrowser_build cmake ../PMbrowser -DCMAKE_BUILD_TYPE=Release cmake --build . --config Release - cmake --install . + cmake --install . --config Release You might need to set the :command:`cmake` variable `CMAKE_PREFIX_PATH` to your :file:`Qt` directory. You might find this easier to do using :program:`cmake-gui` . -By default, the *documentation* will not be build / installed. You have to set the ´BUILD_DOCS` option +By default, the *documentation* will not be build / installed. You have to set the `BUILD_DOCS` option for this.