From 8c5e5249eb379442ebcda1887db6147e55dccec5 Mon Sep 17 00:00:00 2001 From: Benjamin Funke <58399929+BJNFNE@users.noreply.github.com> Date: Tue, 13 May 2025 09:29:12 +0200 Subject: [PATCH] add MSYS2/MinGW as compile option --- docs/BUILD.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/BUILD.md b/docs/BUILD.md index 5308ce461..4603f2097 100755 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -137,3 +137,29 @@ make -j4 # To use it as a command, uncomment the following line: # sudo make install -j4 ``` + +# How to build with MinGW/MSYS2 + +Install MSYS2: https://www.msys2.org/ + +#### Clone this repo recursively: + +```bash +git clone --recursive https://github.com/horsicq/DIE-engine.git +cd DIE-engine +``` + +### Install libaries + +```bash +pacman -S mingw-w64-ucrt-x86_64-gcc +pacman -S mingw-w64-x86_64-qt5-tools +``` + +#### Build + +```bash +chmod a+x configure +./configure +make -j4 +``` \ No newline at end of file