23 lines
575 B
YAML
23 lines
575 B
YAML
image:
|
|
- Visual Studio 2017
|
|
|
|
install:
|
|
- cd C:\Tools\vcpkg
|
|
- git pull
|
|
- .\bootstrap-vcpkg.bat
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
- vcpkg install zlib:x64-windows
|
|
- vcpkg install mbedtls:x64-windows
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DUSE_WS=1 -DUSE_TEST=1 -DUSE_TLS=1 -G"NMake Makefiles" ..
|
|
- nmake
|
|
- cd ..
|
|
- cd test
|
|
- ..\build\test\ixwebsocket_unittest.exe
|
|
|
|
cache: c:\tools\vcpkg\installed\
|
|
|
|
build: off
|