Skip to content

Commit

Permalink
appveyor.yml - merge from master and remove the rdp stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Winter committed Jul 1, 2016
1 parent d2c3f7a commit 58e4797
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
#---------------------------------#
# general configuration #
#---------------------------------#

# version format
version: 1.0.{build}-{branch}

# branches to build
branches:
except:
- gh-pages

# Do not build on tags (GitHub and BitBucket)
skip_tags: false

#---------------------------------#
# environment configuration #
#---------------------------------#

# Build worker image
image:
- Visual Studio 2013

# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input

#---------------------------------#
# build configuration #
#---------------------------------#

# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform:
- x86
# - x64

# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release

install:
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
- set QTDIR=C:\Qt\5.6\msvc2013
- set PATH=%QTDIR%\bin;%PATH%
build_script:
- mkdir build
- cd build
- cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=%CONFIGURATION% ..
- nmake

# to disable automatic builds
#build: off

#---------------------------------#
# tests configuration #
#---------------------------------#

test_script:
- nmake test

# to disable automatic tests
#test: off


#---------------------------------#
# deployment configuration #
#---------------------------------#

deploy: off

#---------------------------------#
# notifications #
#---------------------------------#
notifications:
# Email
- provider: Email
to:
- allen.winter@kdab.com
on_build_status_changed: true

0 comments on commit 58e4797

Please sign in to comment.