From abc09ceacfdaa13e114b1cb492c5d9fbefc14669 Mon Sep 17 00:00:00 2001 From: Daniel Coonce Date: Mon, 16 Nov 2020 22:21:38 -0600 Subject: Add support for MSYS Makefiles in acprep Useful for building in a MINGW32/64 console on Windows. --- acprep | 3 +++ 1 file changed, 3 insertions(+) (limited to 'acprep') diff --git a/acprep b/acprep index 397ae83b..cb1d3b92 100755 --- a/acprep +++ b/acprep @@ -755,6 +755,9 @@ class PrepareBuild(CommandLineApp): if system.startswith('CYGWIN'): self.configure_args.append('-G') self.configure_args.append('Unix Makefiles') + elif system.startswith('MINGW'): + self.configure_args.append('-G') + self.configure_args.append('MSYS Makefiles') elif self.options.use_ninja: self.configure_args.append('-GNinja') -- cgit v1.2.3