From 2a02fb361117df105b7cbff60b907725b7aa3228 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Wed, 28 Mar 2018 11:08:01 +0200 Subject: [PATCH] Document how to make a portable build on Windows On MSYS2, ./gradlew does not work as expected, so use its absolute path. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 523dccbd..79439f3d 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,9 @@ # # "make release-portable" builds a zip containing the client and the server. # +# On Windows with MSYS2/mingw64, execute: +# GRADLE="$PWD/gradlew" mingw32-make release-portable +# # This is a simple Makefile because Meson is not flexible enough to execute some # arbitrary commands.