Skip to content

Commit 9d29ade

Browse files
committed
2 parents 36f354b + 477cf2c commit 9d29ade

File tree

44 files changed

+83
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+83
-59
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: cpp
2+
dist: xenial
3+
4+
before_install:
5+
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
6+
- sudo apt-get update -qq
7+
- sudo apt-get install qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev
8+
- sudo apt-get install qt5-default qttools5-dev-tools
9+
os: linux
10+
script:
11+
- cd Qt.Core
12+
- qmake -project
13+
- qmake Qt.Core.pro
14+
- make
15+
- cd ../Qt.Widgets
16+
- qmake -project
17+
- qmake Qt.Widgets.pro
18+
- make
19+
- cd ..

Qt.Core/Console/Console.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = src/Console.cpp
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = src/ConsoleColor.cpp

Qt.Core/HelloWorld/HelloWorld.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = src/HelloWorld.cpp

Qt.Core/List/List.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = \

Qt.Core/Qt.Core.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
TEMPLATE = subdirs
2+
CONFIG += c++14
23
SUBDIRS = \
34
Console \
45
ConsoleColor \

Qt.Core/StringSplit/StringSplit.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = \

Qt.Core/StringUnicode/StringUnicode.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = \

Qt.Core/StringUnicode2/StringUnicode2.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CONFIG += console c++17
1+
CONFIG += console c++14
22
CONFIG -= app_bundle
33
QT = core
44
SOURCES = \

Qt.Examples.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
TEMPLATE = subdirs
2+
CONFIG += c++14
23
SUBDIRS = \
34
Qt.Core \
45
Qt.Quick \

0 commit comments

Comments
 (0)