From 46e0f4314862aac367e3e6936b3859fcddae28ec Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Tue, 26 Nov 2019 10:31:57 -0800 Subject: appveyor: added install.bat file for common installation steps --- BuildTools/Scripts/appveyor/install.bat | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 BuildTools/Scripts/appveyor/install.bat (limited to 'BuildTools/Scripts') diff --git a/BuildTools/Scripts/appveyor/install.bat b/BuildTools/Scripts/appveyor/install.bat new file mode 100644 index 00000000..0a9d6311 --- /dev/null +++ b/BuildTools/Scripts/appveyor/install.bat @@ -0,0 +1,7 @@ +set CMAKE_URL="https://github.com/Kitware/CMake/releases/download/v3.15.4/cmake-3.15.4-win64-x64.zip" +appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip +7z x cmake.zip -oC:\projects\deps > nul +move C:\projects\deps\cmake-* C:\projects\deps\cmake # Move to a version-agnostic directory +set PATH=C:\projects\deps\cmake\bin;C:\Python37;%PATH% +cmake --version +python --version \ No newline at end of file -- cgit v1.2.3