From 2170c33bb3d2af976a1894666bfd3dc80cbe4da8 Mon Sep 17 00:00:00 2001 From: Charles Giessen Date: Fri, 5 Dec 2025 17:35:24 -0600 Subject: build: Support compilation with MinGW --- scripts/update_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/update_deps.py b/scripts/update_deps.py index 47810a00..7d300865 100755 --- a/scripts/update_deps.py +++ b/scripts/update_deps.py @@ -498,7 +498,7 @@ class GoodRepo(object): # Use the CMake -A option to select the platform architecture # without needing a Visual Studio generator. - if platform.system() == 'Windows' and self._args.generator != "Ninja": + if platform.system() == 'Windows' and not self._args.generator in ["Ninja", "MinGW Makefiles"]: cmake_cmd.append('-A') if self._args.arch.lower() == '64' or self._args.arch == 'x64' or self._args.arch == 'win64': cmake_cmd.append('x64') -- cgit v1.2.3