From 77ccd11220e107a9f790e6382d2d9b841afd2c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Tue, 20 May 2025 14:28:45 +0200 Subject: [PATCH] Add CMake Build Type to Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e31ff6d4..4e01e1c59 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ usual: ```sh mkdir build && cd build -cmake .. +cmake -DCMAKE_BUILD_TYPE=Release .. ``` This will create the directory `build` and processes the CMake files @@ -118,7 +118,7 @@ $ cd # Build process $ mkdir build && cd build -$ cmake -DCMAKE_INSTALL_PREFIX=/home//poet .. +$ cmake -DCMAKE_INSTALL_PREFIX=/home//poet -DCMAKE_BUILD_TYPE=Release .. $ make -j $ make install ```