ddnet/appveyor.yml

25 lines
625 B
YAML
Raw Normal View History

2017-09-14 22:30:29 +00:00
image: Visual Studio 2015
2017-03-18 10:19:20 +00:00
before_build:
2017-09-14 22:30:29 +00:00
- cmd: |
git submodule update --init
2017-09-14 22:30:29 +00:00
md build32 & pushd build32
cmake -Werror=dev -G "Visual Studio 14 2015" ..
popd
2017-03-18 10:19:20 +00:00
2017-09-14 22:30:29 +00:00
md build64 & pushd build64
cmake -Werror=dev -G "Visual Studio 14 2015 Win64" ..
popd
2017-09-14 21:59:38 +00:00
build_script:
2017-09-14 22:30:29 +00:00
- cmd: cmake --build build32 --config Release --target everything
- cmd: cmake --build build64 --condig Release --target everything
2017-09-14 21:59:38 +00:00
after_build:
2017-09-14 22:30:29 +00:00
- cmd: cmake --build build32 --config Release --target package
- cmd: cmake --build build64 --config Release --target package
artifacts:
2017-09-14 22:30:29 +00:00
- path: build^/DDNet-*.zip
name: DDNet