mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
add QT6 linux build instructions
This commit is contained in:
parent
034151dc45
commit
f5a753273a
1 changed files with 52 additions and 0 deletions
|
|
@ -142,6 +142,32 @@ make -j4
|
|||
sudo make install
|
||||
```
|
||||
|
||||
# How to build on Linux(QT6)
|
||||
|
||||
### Qt framework has to be installed on the system.
|
||||
|
||||
#### (Ubuntu) Install Qt Framework:
|
||||
|
||||
```bash
|
||||
sudo apt-get install --quiet --assume-yes build-essential qt6-base-dev qt6-base-dev-tools qt6-tools-dev-tools qt6-5compat-dev libqt6svg6-dev qt6-declarative-dev
|
||||
```
|
||||
|
||||
#### Clone this repo recursively:
|
||||
|
||||
```bash
|
||||
git clone --recursive https://github.com/horsicq/DIE-engine.git
|
||||
cd DIE-engine
|
||||
```
|
||||
|
||||
#### Build
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
qmake6 ../die_source.pro CONFIG+=release
|
||||
make
|
||||
```
|
||||
|
||||
# How to build on macOS
|
||||
|
||||
Install Qt 5.15.2: https://github.com/horsicq/build_tools
|
||||
|
|
@ -280,3 +306,29 @@ cd build
|
|||
qmake ../die_source.pro CONFIG+=debug CONFIG-=release
|
||||
make
|
||||
```
|
||||
|
||||
# How to build on Linux(QT6/Debug)
|
||||
|
||||
### Qt framework has to be installed on the system.
|
||||
|
||||
#### (Ubuntu) Install Qt Framework:
|
||||
|
||||
```bash
|
||||
sudo apt-get install --quiet --assume-yes build-essential qt6-base-dev qt6-base-dev-tools qt6-tools-dev-tools qt6-5compat-dev libqt6svg6-dev qt6-declarative-dev
|
||||
```
|
||||
|
||||
#### Clone this repo recursively:
|
||||
|
||||
```bash
|
||||
git clone --recursive https://github.com/horsicq/DIE-engine.git
|
||||
cd DIE-engine
|
||||
```
|
||||
|
||||
#### Build
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
qmake6 ../die_source.pro CONFIG+=debug CONFIG-=release
|
||||
make
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue