Is it possible to use Windows QT as a continuous integration service?
QT is preinstalled on all configurations. Here's an example script for appveyor.yml :
Install : - Set QTDIR = C: \ Qt \ 5.5 \ mingw492_32 - PAT =% PATH% ;% QTDIR% \ bin; C: \ MinGW \ bin build_script: - qmake QtTest.pro - mingw32-make
Supported compiler environments are mingw492_32
, msvc2013
and msvc2013_64
.
Comments
Post a Comment