1
0

Build changes

This commit is contained in:
Scott E. Graves
2017-03-23 22:20:22 -05:00
parent cf660fd7e6
commit 85e3138fec
48 changed files with 15 additions and 6608 deletions

View File

@@ -3,6 +3,17 @@ set ROOT=%~dp0%
set PATH=%ROOT%bin;%PATH%
pushd "%ROOT%"
if NOT EXIST "3rd_party\dokany-1.0.2" (
del /q v1.0.2.zip > NUL
wget --no-check-certificate "https://github.com/dokan-dev/dokany/archive/v1.0.2.zip" || goto :ERROR
unzip -o -q -d 3rd_party v1.0.2.zip || goto :ERROR
del /q v1.0.2.zip > NUL
del /q dokan.zip > NUL
wget --no-check-certificate "https://github.com/dokan-dev/dokany/releases/download/v1.0.2/dokan.zip" || goto :ERROR
unzip -o -q -d 3rd_party\dokany-1.0.2 dokan.zip || goto :ERROR
del /q dokan.zip > NUL
)
if NOT EXIST ".\bin\cmake-3.7.2-win64-x64\bin\cmake.exe" (
del /q cmake-3.7.2-win64-x64.zip > NUL
wget --no-check-certificate https://cmake.org/files/v3.7/cmake-3.7.2-win64-x64.zip || goto :ERROR