mosquitto/appveyor.yml

23 lines
502 B
YAML
Raw Normal View History

2015-03-03 10:15:50 +00:00
environment:
CMAKE_ARGS: ""
install:
- appveyor DownloadFile http://slproweb.com/download/Win32OpenSSL-1_0_2.exe
- Win32OpenSSL-1_0_2.exe /silent /verysilent /sp- /suppressmsgboxes
- appveyor DownloadFile ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip
- md C:\pthreads
2015-03-03 12:53:40 +00:00
- 7z -y x pthreads-w32-2-9-1-release.zip -oC:\pthreads
2015-03-03 10:15:50 +00:00
build:
build_script:
- md build
- cd build
- cmake %CMAKE_ARGS% ..
2015-03-03 10:17:31 +00:00
- cmake --build .
2015-03-03 10:15:50 +00:00
cache:
- C:\OpenSSL-Win32
- C:\pthreads