mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
add openBSD build instructions
This commit is contained in:
parent
f748651449
commit
1594020dad
1 changed files with 37 additions and 0 deletions
|
|
@ -447,4 +447,41 @@ mkdir build
|
|||
cd build
|
||||
qmake ../die_source.pro CONFIG+=debug
|
||||
make
|
||||
```
|
||||
|
||||
# How to build on openBSD(QT5)
|
||||
|
||||
### Qt framework has to be installed on the system.
|
||||
|
||||
#### Download dependencies
|
||||
|
||||
```bash
|
||||
su -
|
||||
pkg_add git gmake cmake qtbase qtsvg qtscript qttools
|
||||
exit
|
||||
```
|
||||
|
||||
#### 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-qt5 ../die_source.pro CONFIG+=release
|
||||
gmake
|
||||
```
|
||||
|
||||
#### Build (Debug)
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
qmake-qt5 ../die_source.pro CONFIG+=debug
|
||||
gmake
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue