diff --git a/build-win32.cmd b/build-win32.cmd new file mode 100644 index 0000000..b0f0b78 --- /dev/null +++ b/build-win32.cmd @@ -0,0 +1,10 @@ +@echo off + +:: set PATH=d:\python\python38-32;d:\python\python38-32\Scripts;%PATH% + +rmdir /s /q build +rmdir /s /q dist + +python setup.py sdist +python setup.py build_ext +python setup.py bdist_wheel diff --git a/setup_libuv.py b/setup_libuv.py index 1318118..54ee687 100644 --- a/setup_libuv.py +++ b/setup_libuv.py @@ -124,5 +124,6 @@ class build_libuv(build_ext): self.compiler.add_library('user32') self.compiler.add_library('userenv') self.compiler.add_library('ws2_32') + self.compiler.add_library('secur32') build_ext.build_extensions(self)