-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
46 lines (41 loc) · 1.09 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
configuration:
- mingw53_32
- msvc2017_64
environment:
PROJECT_DIR: C:\projects\travistest
matrix:
- QBS_CONFIG: debug
- QBS_CONFIG: release
image:
- Visual Studio 2017
install:
# - set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin;C:\Qt\Tools\QtCreator\bin\
for:
-
matrix:
only:
- configuration: mingw53_32
environment:
QT_PATH: C:\Qt\5.11.2\mingw53_32
before_build:
- set PATH=%QT_PATH%\bin;C:\Qt\Tools\QtCreator\bin\;%PATH%
- qtenv2.bat
- qbs setup-toolchains --detect
- qbs setup-qt --detect
- cd %PROJECT_DIR%
build_script:
- qbs build -f test.qbs -d build --command-echo-mode command-line profile:qt-5-11-2 config:%QBS_CONFIG%
-
matrix:
only:
- configuration: msvc2017_64
environment:
QT_PATH: C:\Qt\5.11.2\msvc2017_64
before_build:
- set PATH=%QT_PATH%\bin;C:\Qt\Tools\QtCreator\bin\;%PATH%
- qtenv2.bat
- qbs setup-toolchains --detect
- qbs setup-qt --detect
- cd %PROJECT_DIR%
build_script:
- qbs build -f test.qbs -d build --command-echo-mode command-line profile:qt-5-11-2 config:%QBS_CONFIG%