-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Benedikt Moritz Maurer
committed
Oct 5, 2024
1 parent
2e66976
commit 64401bf
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
This is flash, a super fast BSE solver. | ||
|
||
# Install: | ||
To build **Flash** with debug flags, release flags and the documentation type in the root directory | ||
```bash | ||
make | ||
``` | ||
You can seperately build **Flash** with debug flags, release flags or the documentation seperately by typing, respectively | ||
```bash | ||
make debug | ||
make release | ||
make documentation | ||
``` | ||
If you wish to make build the documentation, make sure that doxygen is installed. | ||
|
||
## Run unit tests: | ||
Run all tests: | ||
``` | ||
make test | ||
``` | ||
Run debug or release build tests | ||
```bash | ||
make test-debug | ||
make test-release | ||
``` | ||
|
||
## Lint and auto-format the code: | ||
To run first **clang-tidy** and then **clang-format** for all files, type | ||
```bash | ||
make linter | ||
|
||
``` | ||
To run **clang-tidy** or then**clang-format**, type, respectively | ||
```bash | ||
make clang-tidy | ||
make clang-format | ||
``` | ||
|
||
## Requirements: | ||
For building: | ||
- CMake > | ||
- Eigen | ||
- HDF5 | ||
- cpp-yaml | ||
- catch2 | ||
- boost | ||
For the documentation | ||
- doxygen | ||
For linting and auto formatting: | ||
- clang-tidy | ||
- clang-format | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters