Add CMake Build Type to Readme

This commit is contained in:
Max Lübke 2025-05-20 14:28:45 +02:00
parent d169c5583b
commit 9ab13ca547

View File

@ -74,7 +74,7 @@ usual:
```sh ```sh
mkdir build && cd build mkdir build && cd build
cmake .. cmake -DCMAKE_BUILD_TYPE=Release ..
``` ```
This will create the directory `build` and processes the CMake files This will create the directory `build` and processes the CMake files
@ -118,7 +118,7 @@ $ cd <POET_dir>
# Build process # Build process
$ mkdir build && cd build $ mkdir build && cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/home/<user>/poet .. $ cmake -DCMAKE_INSTALL_PREFIX=/home/<user>/poet -DCMAKE_BUILD_TYPE=Release ..
$ make -j<max_numprocs> $ make -j<max_numprocs>
$ make install $ make install
``` ```