mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-25 23:28:09 +00:00
Add missing file for Windows Phone 8 build.
This commit is contained in:
parent
35434faecd
commit
593454ce53
1 changed files with 22 additions and 0 deletions
22
build/wp8/version.bat
Normal file
22
build/wp8/version.bat
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
@ECHO off
|
||||
|
||||
SET gitlog=
|
||||
FOR /f "delims=" %%a IN ('git log -1 "--pretty=format:%%H" ../../configure.ac') DO SET gitlog=%%a
|
||||
|
||||
IF [%gitlog%] == [] GOTO UnknownGitVersion
|
||||
|
||||
FOR /f "delims=" %%a IN ('git describe --always') DO SET gitdescribe=%%a
|
||||
GOTO End
|
||||
|
||||
:UnknownGitVersion
|
||||
SET gitdescribe=unknown
|
||||
|
||||
:End
|
||||
ECHO #define LIBLINPHONE_GIT_VERSION "%gitdescribe%" > liblinphone_gitversion.h
|
||||
|
||||
|
||||
FOR /F "delims=" %%a IN ('findstr /B AC_INIT ..\..\configure.ac') DO (
|
||||
FOR /F "tokens=1,2,3 delims=[,]" %%1 IN ("%%a") DO (
|
||||
ECHO #define LIBLINPHONE_VERSION "%%3" > config.h
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Reference in a new issue