From 16654f956329b9f8ef8e68264363ba85d3715723 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 12 Aug 2024 16:14:35 +0200 Subject: [PATCH] All native config are compatible with windows. --- kiwixbuild/configs/native.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/configs/native.py b/kiwixbuild/configs/native.py index 20c55a5..3da055a 100644 --- a/kiwixbuild/configs/native.py +++ b/kiwixbuild/configs/native.py @@ -35,10 +35,10 @@ class NativeDyn(NativeConfigInfo): class NativeStatic(NativeConfigInfo): name = "native_static" static = True - compatible_hosts = ["fedora", "debian", "Darwin", "almalinux"] + compatible_hosts = ["fedora", "debian", "Darwin", "almalinux", "Windows"] class NativeMixed(MixedMixin("native_static"), NativeConfigInfo): name = "native_mixed" static = False - compatible_hosts = ["fedora", "debian", "Darwin", "almalinux"] + compatible_hosts = ["fedora", "debian", "Darwin", "almalinux", "Windows"]