Reputation: 11780
Is it possible to use AppVeyor as a Windows Qt continuous integration service?
Upvotes: 15
Views: 2975
Reputation: 11780
Qt is preinstalled on all configurations. See http://www.appveyor.com/docs/installed-software#qt
Here is an example script for appveyor.yml :
install:
- set QTDIR=C:\Qt\5.5\mingw492_32
- set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin
build_script:
- qmake QtTest.pro
- mingw32-make
Supported compiler environments are mingw492_32
, msvc2013
and msvc2013_64
.
Upvotes: 18
Reputation: 20529
Looks like Qt is now available for all configurations - http://www.appveyor.com/docs/installed-software#qt
Upvotes: 3