mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
617ed25a19
- Removed commandline switch "version" - Added MinGit for determining version information during compile process - Added sigcheck to determine version of the executable
27 lines
774 B
Batchfile
27 lines
774 B
Batchfile
:: Initialize environment
|
|
call "%~dp0..\env.bat"
|
|
if errorlevel 1 goto error_env
|
|
|
|
set EnvRootPath=%RootPath%\%SourceName%-msys2
|
|
set EnvToolsPath=%EnvRootPath%\tools
|
|
set EnvTempPath=%EnvRootPath%\tmp
|
|
set EnvDownloadPath=%EnvRootPath%\download
|
|
|
|
set EnvWgetExe=%EnvToolsPath%\wget.exe
|
|
set EnvSevenZipExe=%EnvToolsPath%\7z.exe
|
|
set EnvDependsExe=%EnvToolsPath%\depends.exe
|
|
set EnvCEchoExe=%EnvToolsPath%\cecho.exe
|
|
set cecho=call "%ToolsPath%\cecho.bat"
|
|
|
|
:: 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.
|
|
exit /B 1
|