From 7916566d47bdff1b1f23e3da58dc0de2487bae63 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Tue, 8 Jul 2025 18:39:43 +0200 Subject: [PATCH] Adjusted dynamic library extension for Windows (which is also .lib). --- SConscript | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/SConscript b/SConscript index c309e1c..2276499 100644 --- a/SConscript +++ b/SConscript @@ -255,11 +255,7 @@ def _lib_filename(env: Environment, name: str, type: str = 'static') -> str: }[type] return f'lib{name}.{ext}' elif os.name == 'nt': - ext = { - 'static': 'lib', - 'shared': 'dll' - }[type] - return f'{name}.{ext}' + return f'{name}.lib' else: raise Exception('What OS is this?')