-
Notifications
You must be signed in to change notification settings - Fork 14
/
.appveyor.yml
52 lines (43 loc) · 1.24 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
47
48
49
50
51
52
clone_depth: 5
environment:
matrix:
- GENERATOR : "MinGW Makefiles"
QTDIR: C:\Qt\5.7\mingw53_32
PLATFORM: x86
- GENERATOR : "Visual Studio 14 2015 Win64"
QTDIR: C:\Qt\5.7\msvc2015_64
PLATFORM: x64
- GENERATOR : "Visual Studio 14 2015"
QTDIR: C:\Qt\5.7\msvc2015
PLATFORM: Win32
configuration:
- Release
#branches:
#only:
#- master
before_build:
- mkdir build
- cd build
- set PATH=%QTDIR%\bin;%PATH%
- set PATH=C:\MinGW\bin;C:\MinGW\msys\1.0;%PATH%
- set PATH=%PATH:C:\Program Files\Git\usr\bin=% # trick to remove sh.exe
- cmake "-G%GENERATOR%" -DCMAKE_PREFIX_PATH="%QTDIR/lib/cmake/Qt5" ..
build_script:
- if "%PLATFORM%" == "x86" cmake --build .
- if "%PLATFORM%" == "x64" msbuild ComponentManager.sln
- if "%PLATFORM%" == "Win32" msbuild ComponentManager.sln
#build:
#parallel: true
#project: C:\projects\nodeeditor\build\ComponentManager.sln
#build_script:
#- msbuild ComponentManager.sln /t:build /p:Configuration=Release
#deploy:
#release: $(APPVEYOR_REPO_TAG_NAME)
#provider: GitHub
#artifact: /.*\.exe/
#auth_token:
#secure: j0nBV9xVItdG3j6d0gHoyvrzi7TOhAy9/QIeyCbFeP8PTqq7DPr1oYwL5WIkPaXe
#draft: false
#prerelease: false
#on:
#appveyor_repo_tag: true