mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
30 lines
867 B
Batchfile
30 lines
867 B
Batchfile
|
:: Initialize environment
|
||
|
call "%~dp0..\env.bat"
|
||
|
if errorlevel 1 goto error_env
|
||
|
|
||
|
set EnvRootPath=%RootPath%\%SourceName%-env
|
||
|
set EnvToolsPath=%EnvRootPath%\tools
|
||
|
set EnvTempPath=%EnvRootPath%\tmp
|
||
|
set EnvDownloadPath=%EnvRootPath%\download
|
||
|
|
||
|
set EnvCurlExe=%EnvToolsPath%\curl.exe
|
||
|
set EnvSevenZipExe=%EnvToolsPath%\7z.exe
|
||
|
set EnvJomExe=%EnvToolsPath%\jom.exe
|
||
|
set EnvSedExe=%EnvToolsPath%\sed.exe
|
||
|
set EnvCutExe=%EnvToolsPath%\cut.exe
|
||
|
set EnvDependsExe=%EnvToolsPath%\depends.exe
|
||
|
set EnvMakeNSISExe=%EnvToolsPath%\NSIS\makensis.exe
|
||
|
|
||
|
:: Create folders
|
||
|
if not exist "%EnvRootPath%" mkdir "%EnvRootPath%"
|
||
|
if not exist "%EnvToolsPath%" mkdir "%EnvToolsPath%"
|
||
|
if not exist "%EnvDownloadPath%" mkdir "%EnvDownloadPath%"
|
||
|
|
||
|
call "%~dp0tools\prepare-tools.bat"
|
||
|
exit /B %ERRORLEVEL%
|
||
|
|
||
|
:error_env
|
||
|
echo Failed to initialize environment.
|
||
|
endlocal
|
||
|
exit /B 1
|