Skip to content

Commit 8687e90

Browse files
authored
Merge pull request #288 from BJNFNE/msys2-new
add MSYS2/MinGW as compile option
2 parents acb7bd1 + 8c5e524 commit 8687e90

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

docs/BUILD.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,29 @@ make -j4
137137
# To use it as a command, uncomment the following line:
138138
# sudo make install -j4
139139
```
140+
141+
# How to build with MinGW/MSYS2
142+
143+
Install MSYS2: https://www.msys2.org/
144+
145+
#### Clone this repo recursively:
146+
147+
```bash
148+
git clone --recursive https://github.com/horsicq/DIE-engine.git
149+
cd DIE-engine
150+
```
151+
152+
### Install libaries
153+
154+
```bash
155+
pacman -S mingw-w64-ucrt-x86_64-gcc
156+
pacman -S mingw-w64-x86_64-qt5-tools
157+
```
158+
159+
#### Build
160+
161+
```bash
162+
chmod a+x configure
163+
./configure
164+
make -j4
165+
```

0 commit comments

Comments
 (0)