Search code examples
windowsqtcontinuous-integrationappveyor

Build Qt project from AppVeyor


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


Solution

  • 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.