We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5516fe8 + 5089cd9 commit 5d64e50Copy full SHA for 5d64e50
3 files changed
.travis.yml
@@ -0,0 +1,28 @@
1
+
2
+os: linux
3
+dist: focal
4
5
+language: cpp
6
+compiler: gcc
7
8
+before_install:
9
+ - sudo add-apt-repository -y ppa:beineri/opt-qt-5.15.0-focal
10
+ - sudo apt update -qq
11
12
+install:
13
+ # install CMake
14
+ - sudo apt install -qq cmake
15
+ - cmake -version
16
17
+ # Dependency for Qt
18
+ - sudo apt install -qq mesa-common-dev libglu1-mesa-dev
19
20
+ # Install Qt
21
+ - sudo apt install -qq qt515base qt515serialbus
22
23
+ # Setup Qt env
24
+ - source /opt/qt*/bin/qt*-env.sh
25
26
+script:
27
+ - cmake .
28
+ - make -j$(nproc)
0 commit comments