File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,20 @@ install:
1414 - pip install autobahntestsuite
1515 - ps : If ($env:Platform -Match "x86"){ $env:CMAKE_ARCH="" } Else { $env:CMAKE_ARCH=" Win64"}
1616 - cd c:\projects
17+ - set CMAKE_URL="https://cmake.org/files/v3.9/cmake-3.9.3-win64-x64.zip"
18+ - appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
19+ - 7z x cmake.zip -oC:\projects\cmake > nul
20+ - move C:\projects\deps\cmake-* C:\projects\deps\cmake # Move to a version-agnostic directory
21+ - set PATH=C:\projects\deps\cmake\bin;%PATH%
22+ - cmake --version
1723 - mkdir build
1824 - cd build
1925 - git clone https://github.com/Microsoft/vcpkg
2026 - cd vcpkg
2127 - powershell -exec bypass scripts\bootstrap.ps1
2228 - .\vcpkg integrate install
2329 - .\vcpkg install zlib:x86-windows-static openssl:x86-windows-static zlib openssl
24-
30+
2531build_script :
2632 - cd c:\projects\proj
2733 - mkdir build
You can’t perform that action at this time.
0 commit comments