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?')