python/lib/moresetuptools.py: define HAVE_WIN_HACKS on windows
[aubio.git] / appveyor.yml
1 # appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml
2 # and http://www.appveyor.com/docs/installed-software#python
3
4 environment:
5
6   matrix:
7     - PYTHON: "C:\\Python27"
8     - PYTHON: "C:\\Python33-x64"
9
10 install:
11
12   - ECHO "Installed SDKs:"
13   - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
14
15   # Check that we have the expected version and architecture for Python
16   - "%PYTHON%\\python.exe --version"
17   - "%PYTHON%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
18
19   # We need wheel installed to build wheels
20   - "%PYTHON%\\python.exe -m pip install wheel"
21
22 before_build:
23   - curl -fsS -o waf https://waf.io/waf-1.8.20
24   - curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat
25
26 build_script:
27   - waf configure build --verbose