File: .appveyor.yml

package info (click to toggle)
rclone-browser 1.8.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,192 kB
  • sloc: cpp: 4,327; sh: 161; xml: 50; python: 24; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: '#{build}'
image: 'Visual Studio 2019'
branches:
  only:
  - master
  - kptsky_testing
skip_tags: true
clone_depth: 1
build_script:
  - mkdir build
  - cd build
  - cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_CONFIGURATION_TYPES="Release" -DCMAKE_PREFIX_PATH=C:\Qt\5.13\msvc2017_64 ..
  - cmake --build . --config Release
artifacts:
- path: build/build/Release/RcloneBrowser.exe
test: off
deploy: off