aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 5ae224f5e7efd2d23a37804583ada9755b59de7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
init:
  - cmd: python --version
  - cmd: python -c "import platform; print(platform.machine())"

install:
  - cmd: git submodule update --init --recursive

build_script:
  - cmd: >-
      cmake --version
      dir
      cd C:\Qt
      rem curl -sLO https://download.qt.io/archive/qt/5.5/5.5.0/qt-opensource-windows-x86-msvc2010-5.5.0.exe
      rem 7z 9.20 fails to unpack the archive properly (only 13/585Mb are unpacked)
      rem 7z x qt-opensource-windows-x86-msvc2010-5.5.0.exe
      
      cd C:\projects\pyside2-setup
      dir C:\Qt\5.5
      dir C:\Qt\5.5\mingw492_32
      dir C:\Qt\5.5\mingw492_32\bin
      dir C:\OpenSSL-Win32
      set QTDIR=C:\Qt\5.5\mingw492_32
      set PATH=%PATH%;%QTDIR%\bin
      qmake --version
      python setup.py install --openssl=C:\OpenSSL-Win32