0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-21 15:12:03 +08:00

Add appveyor support for building on windows.

This commit is contained in:
Richard Newton 2015-02-04 17:54:26 +00:00
parent 34cd718e0f
commit ca94cf568b

19
appveyor.yml Normal file
View File

@ -0,0 +1,19 @@
environment:
matrix:
- configuration: Release
branches:
only:
- master
clone_folder: c:\libzmq
build_script:
- md c:\build
- cd c:\build
- echo Running cmake...
- cmake -G "Visual Studio 12" -DCMAKE_BUILD_TYPE=%Configuration% c:\libzmq
- cmake --build .
test_script:
- cd c:\build
- ctest -C %Configuration%