mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
add debug build linux instructions
This commit is contained in:
parent
b02c6de601
commit
d9f2164459
1 changed files with 25 additions and 0 deletions
|
|
@ -255,3 +255,28 @@ chmod a+x build_dpkg.sh
|
|||
./build_dpkg.sh
|
||||
```
|
||||
|
||||
# How to build on Linux(Debug)
|
||||
|
||||
### Qt framework has to be installed on the system.
|
||||
|
||||
#### (Ubuntu) Install Qt Framework:
|
||||
|
||||
```bash
|
||||
sudo apt-get install --quiet --assume-yes build-essential qt5-default qtbase5-dev qttools5-dev-tools qtscript5-dev libqt5svg5-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
|
||||
qmake ../die_source.pro CONFIG+=debug CONFIG-=release
|
||||
make
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue