-
Notifications
You must be signed in to change notification settings - Fork 38
/
.appveyor.yml
45 lines (37 loc) · 1.25 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
# shallow_clone: true
image:
Visual Studio 2017
build:
verbosity: detailed
configuration:
- Debug
platform:
- x64
branches:
except:
- /pr\/.+/
install:
############################################################################
# Update git submodules
############################################################################
- git submodule update --init --recursive
############################################################################
# Install a recent CMake
############################################################################
# - set CMAKE_URL="https://cmake.org/files/v3.8/cmake-3.8.0-win64-x64.zip"
# - appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
# - 7z x cmake.zip -oC:\projects\deps > nul
# - move C:\projects\deps\cmake-* C:\projects\deps\cmake # Move to a version-agnostic directory
# - set PATH=C:\projects\deps\cmake\bin;%PATH%
- cmake --version
build_script:
- cd C:\projects\camstudio
- IF EXIST build RMDIR /S /Q vs_build
- MKDIR vs_build
- cd vs_build
- cmake ../ -G "Visual Studio 15 2017 Win64" -T host=x64 -DDEPLOY_BUILD=1
- cmake --build . --target INSTALL
- cmake --build . --target DEPLOY
artifacts:
- path: vs_build\install\bin\installer\*.exe
name: Installer