diff options
| author | Marius Gedminas <marius@gedmin.as> | 2015-12-14 09:39:10 +0200 |
|---|---|---|
| committer | Marius Gedminas <marius@gedmin.as> | 2015-12-14 09:39:10 +0200 |
| commit | 971f6582614493cc44bf3da7b1bc04077aa45dec (patch) | |
| tree | e0ca0c2a20bf6a4af275dd84fa1172cac916e786 /build.cmd | |
| parent | 7795f07b1e962e79df846679269874b4eb61279f (diff) | |
| download | zope-interface-appveyor.tar.gz | |
Appveyor: 64-bit builds and wheelsappveyor
Based on http://python-packaging-user-guide.readthedocs.org/en/latest/appveyor/
Diffstat (limited to 'build.cmd')
| -rw-r--r-- | build.cmd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..243dc9a --- /dev/null +++ b/build.cmd @@ -0,0 +1,21 @@ +@echo off +:: To build extensions for 64 bit Python 3, we need to configure environment +:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of: +:: MS Windows SDK for Windows 7 and .NET Framework 4 +:: +:: More details at: +:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows + +IF "%DISTUTILS_USE_SDK%"=="1" ( + ECHO Configuring environment to build with MSVC on a 64bit architecture + ECHO Using Windows SDK 7.1 + "C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\WindowsSdkVer.exe" -q -version:v7.1 + CALL "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release + SET MSSdk=1 + REM Need the following to allow tox to see the SDK compiler + SET TOX_TESTENV_PASSENV=DISTUTILS_USE_SDK MSSdk INCLUDE LIB +) ELSE ( + ECHO Using default MSVC build environment +) + +CALL %* |
