mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
add Alpine Linux build instructions
This commit is contained in:
parent
282cf0272b
commit
42b9c7a62a
1 changed files with 36 additions and 0 deletions
|
|
@ -411,4 +411,40 @@ make
|
|||
```bash
|
||||
export QT_QPA_PLATFORM=wayland
|
||||
./die
|
||||
```
|
||||
|
||||
# How to build on Alpine Linux(QT5)
|
||||
|
||||
### Qt framework has to be installed on the system.
|
||||
|
||||
#### Download dependencies
|
||||
|
||||
```bash
|
||||
apk update
|
||||
apk add qt5-qtbase-dev qt5-qtscript-dev qt5-qttools-dev qt5-qtsvg-dev git build-base pkgconf
|
||||
```
|
||||
|
||||
#### Clone this repo recursively:
|
||||
|
||||
```bash
|
||||
git clone --recursive https://github.com/horsicq/DIE-engine.git
|
||||
cd DIE-engine
|
||||
```
|
||||
|
||||
#### Build (Release)
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
qmake ../die_source.pro CONFIG+=release
|
||||
make
|
||||
```
|
||||
|
||||
#### Build (Debug)
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
qmake ../die_source.pro CONFIG+=debug
|
||||
make
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue