-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Git Version number (Windows MSVS with prebuild script)
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@echo off | ||
REM This pre-build file is for MSVS VC++. It parses the git master hash and | ||
REM converts it into GitVersion.h for compiling into builds. [George M1GEO] | ||
|
||
cd %1 | ||
setlocal enabledelayedexpansion | ||
set HEADFILE=.git\HEAD | ||
set HASHFILE=0 | ||
if exist %HEADFILE% ( | ||
for /F "tokens=4 delims=/:" %%a in ('type %HEADFILE%') do set HEADBRANCH=%%a | ||
set HASHFILE=.git\refs\heads\!HEADBRANCH! | ||
echo Found Git HEAD file: %HEADFILE% | ||
echo Git HEAD branch: !HEADBRANCH! | ||
echo Git HASH file: !HASHFILE! | ||
call :USEHASH | ||
) else ( | ||
echo No head file :( | ||
call :USENULL | ||
) | ||
|
||
goto :EOF | ||
|
||
:USENULL | ||
set GITHASH=0000000000000000000000000000000000000000 | ||
goto :WRITEGITVERSIONHEADER | ||
|
||
:USEHASH | ||
for /f %%i in ('type !HASHFILE!') do set GITHASH=%%i | ||
goto :WRITEGITVERSIONHEADER | ||
|
||
:WRITEGITVERSIONHEADER | ||
echo # File contains Git commit ID SHA1 present at buildtime (prebuild.cmd) > GitVersion.h | ||
echo const char *gitversion = "%GITHASH%"; >> GitVersion.h | ||
echo Current Git HASH: %GITHASH% | ||
goto :FINISHED | ||
|
||
:FINISHED | ||
echo GitVersion.h written... |