environment: matrix: - build_name: mingw73_32_qt5_12_6 QTPATH: C:\Qt\5.12.6\mingw73_32 MINGW32: C:\Qt\Tools\mingw730_32 install: - cd %APPVEYOR_BUILD_FOLDER% - git submodule update --init --recursive - set PATH=%PATH%;%QTPATH%\bin;%MINGW32%\bin build_script: - mkdir build - cd build - cmake -G "Unix Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_INSTALL_PREFIX='%cd%' ..\ - mingw32-make - mingw32-make install # fixme: I don't know how to NOT make the binary installed to the ./bin/ folder... - cd bin - windeployqt --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler --release .\ppic.exe - tree artifacts: - path: build\bin