- Update Fedora in README.md

This commit is contained in:
2025-08-17 11:51:46 -04:00
parent 5252ba84c9
commit e6c0a60ea9
2 changed files with 14 additions and 1 deletions

View File

@@ -165,6 +165,19 @@ for Doxygen run:
sudo apt install doxygen graphviz
```
#### Fedora (`dnf`)
On Debian-based distributions, you can install dependencies using the following command:
```shell
sudo dnf install build-essential g++ cmake ninja-build glew-devel valgrind
git submodule update --init --recursive
```
for Doxygen run:
```shell
sudo apt install doxygen graphviz
```
<br>
<a id="building-on-windows"></a>

View File

@@ -84,7 +84,7 @@ void _assert_impl(const char* expression, const char* file, int line, const char
}
#if FENNEC_RELEASE
#define assertd(expression, description) (0)
#define assertd(expression, description)
#else
#define assertd(expression, description) assert(expression, description)
#endif