summaryrefslogtreecommitdiffstats
path: root/BuildTools/Scripts
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-11-26 18:31:57 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-11-26 18:31:57 +0000
commit46e0f4314862aac367e3e6936b3859fcddae28ec (patch)
treeec5e90ed3ec5e1bbf767caddf164877bcfb34082 /BuildTools/Scripts
parentUpdated formatting in VulkanLogicalDevice.h (diff)
downloadDiligentCore-46e0f4314862aac367e3e6936b3859fcddae28ec.tar.gz
DiligentCore-46e0f4314862aac367e3e6936b3859fcddae28ec.zip
appveyor: added install.bat file for common installation steps
Diffstat (limited to 'BuildTools/Scripts')
-rw-r--r--BuildTools/Scripts/appveyor/install.bat7
1 files changed, 7 insertions, 0 deletions
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