Created
August 11, 2013 22:25
-
-
Save amyreese/6207161 to your computer and use it in GitHub Desktop.
Travis CI config to build against Qt5.0 on Ubuntu 12.04. Requires installing a PPA and certain packages for qt5 support.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before_install: | |
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa | |
- sudo apt-get update -qq | |
- sudo apt-get install -qq qt5-qmake qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev | |
script: | |
- qmake -qt=qt5 -v | |
- qmake -qt=qt5 | |
- make |
Thanks! I was trying to get my capybara-webkit tests to pass after we started using React, and here's the version that finally got it working for me after some trial and error:
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libqt5webkit5-dev qtdeclarative5-dev
- export QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
Thanks!
I want to configure QT on MAC and Windows, Can you please help me out this?
Send me MAC and Windows script for QT 5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
just what i was needing , thx !