Martin Delille
Martin Delille

Reputation: 11780

Build Qt project from AppVeyor

Is it possible to use AppVeyor as a Windows Qt continuous integration service?

Upvotes: 15

Views: 2975

Answers (2)

Martin Delille
Martin Delille

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

anatoly techtonik
anatoly techtonik

Reputation: 20529

Looks like Qt is now available for all configurations - http://www.appveyor.com/docs/installed-software#qt

Upvotes: 3

Related Questions