add Fedora build process

This commit is contained in:
Benjamin Funke 2025-06-20 18:26:16 +02:00 committed by GitHub
commit 96ed4da81c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,6 +48,29 @@ bash -x build_dpkg.sh
sudo dpkg -i release/$(ls release)
```
# How to build on Linux based on Fedora (DNF)
#### Install packages:
```bash
sudo dnf install qt5-qtbase-devel qt5-qtscript-devel qt5-qttools-devel git make gcc-c++
```
#### Clone this repo recursively:
```bash
git clone --recursive https://github.com/horsicq/DIE-engine.git
cd DIE-engine
```
#### Build
```bash
chmod a+x configure
./configure
make -j4
```
# How to build on Linux(Automake)
### Qt framework has to be installed on the system.