From eabe23c5eb61630212d28529443f48cbb5555734 Mon Sep 17 00:00:00 2001 From: Benjamin Funke <58399929+BJNFNE@users.noreply.github.com> Date: Tue, 13 May 2025 07:13:05 +0200 Subject: [PATCH 1/2] add MinGW/MSYS2 as compiling option --- docs/BUILD.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/BUILD.md b/docs/BUILD.md index 5308ce461..ed5cbd8c0 100755 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -137,3 +137,28 @@ make -j4 # To use it as a command, uncomment the following line: # sudo make install -j4 ``` + +# How to build with MinGW/MSYS2 + +#### 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-x86_64-qt5-base +pacman -S mingw-w64-x86_64-qt5-tools +pacman -S mingw-w64-x86_64-qt5-script +``` + +#### Build + +```bash +chmod a+x configure +./configure +make -j4 +``` From 160fb3ae9116616d2bb6b60a12ef20a86550c111 Mon Sep 17 00:00:00 2001 From: Benjamin Funke <58399929+BJNFNE@users.noreply.github.com> Date: Tue, 13 May 2025 07:13:05 +0200 Subject: [PATCH 2/2] add MinGW/MSYS2 as compiling option --- docs/BUILD.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/BUILD.md b/docs/BUILD.md index 5308ce461..a084df424 100755 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -137,3 +137,31 @@ 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-base +pacman -S mingw-w64-x86_64-qt5-tools +pacman -S mingw-w64-x86_64-qt5-script +``` + +#### Build + +```bash +chmod a+x configure +./configure +make -j4 +```