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
38 lines
1.1 KiB
Batchfile
38 lines
1.1 KiB
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 EnvWgetExe=%EnvToolsPath%\wget.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
|
|
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"
|
|
if errorlevel 1 exit /B %ERRORLEVEL%
|
|
|
|
:: Add MinGit to PATH
|
|
set PATH=%EnvToolsPath%\MinGit\cmd;%PATH%
|
|
set HOME=%EnvToolsPath%\MinGit\home
|
|
|
|
exit /B 0
|
|
|
|
:error_env
|
|
echo Failed to initialize environment.
|
|
exit /B 1
|