We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce7d7ee commit 7f399afCopy full SHA for 7f399af
1 file changed
.travis.yml
@@ -0,0 +1,27 @@
1
+
2
+language: cpp
3
+sudo: required
4
+dist: bionic
5
+compiler: gcc
6
7
+before_install:
8
+ - sudo add-apt-repository ppa:beineri/opt-qt-5.12.6-bionic -y
9
+ - sudo apt update -qq
10
11
+install:
12
+ # install CMake
13
+ - sudo apt install -qq cmake
14
+ - cmake -version
15
16
+ # Dependency for Qt
17
+ - sudo apt -qq install mesa-common-dev libglu1-mesa-dev
18
19
+ # Install Qt
20
+ - sudo apt -qq install qt512-meta-minimal qt512serialbus
21
22
+ # Setup Qt env
23
+ - source /opt/qt512/bin/qt512-env.sh
24
25
+script:
26
+ - cmake .
27
+ - make -j4
0 commit comments