From cfc4fe56d89d0c64842817ebc95beb599bc60b51 Mon Sep 17 00:00:00 2001 From: Benedikt Moritz Maurer Date: Sat, 5 Oct 2024 19:04:20 +0200 Subject: [PATCH] Update README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5598793..a878b7d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ This is flash, a super fast BSE solver. # Install: +## Use `make`: To build **Flash** with debug flags, release flags and the documentation type in the root directory ```bash make @@ -13,6 +14,16 @@ make documentation ``` If you wish to make build the documentation, make sure that doxygen is installed. +## The classic way +You can avoid using the `Makefile` and build the code with cmake +```bash +mkdir build +cd build +cmake ../dev/ +cmake --build +``` +The make commands are doing exactly that. + ## Run unit tests: Run all tests: ```