-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added revision number to movie format, and fixed avi splitting (for r…
…eal)
- Loading branch information
1 parent
95b176c
commit 55fd3d2
Showing
12 changed files
with
210 additions
and
54 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,29 @@ | ||
@REM this batch file has to be run from the directory the vproj is in. all the paths are relative to that. | ||
@ECHO OFF | ||
SETLOCAL enabledelayedexpansion | ||
..\shared\SubWCRev\SubWCRev.exe .. "..\shared\SubWCRev\svnrev_template.h" "..\shared\svnrev_temp.h" | ||
IF EXIST "..\shared\svnrev_temp.h" ( | ||
set text1= | ||
for /f "delims=" %%i in (..\shared\svnrev_temp.h) do ( | ||
set text1=!text1!%%i | ||
) | ||
set text2= | ||
IF EXIST "..\shared\svnrev.h" ( | ||
for /f "delims=" %%i in (..\shared\svnrev.h) do ( | ||
set text2=!text2!%%i | ||
) | ||
) | ||
if !text1!==!text2! ( | ||
echo decided not to modify svnrev.h | ||
DEL "..\shared\svnrev_temp.h" | ||
) else ( | ||
IF EXIST "..\shared\svnrev.h" ( | ||
echo updated svnrev.h | ||
) else ( | ||
echo generated svnrev.h | ||
) | ||
MOVE /Y "..\shared\svnrev_temp.h" "..\shared\svnrev.h" | ||
) | ||
) | ||
ENDLOCAL | ||
exit 0 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,4 @@ | ||
// this should be overridden by the one generated in the "shared" directory, | ||
// but this fallback version is here just in case (to prevent compiler errors) | ||
#define SRCVERSION -1 | ||
#define SRCVERSIONSTRING "-1" |
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,2 @@ | ||
#define SRCVERSION $WCREV$ | ||
#define SRCVERSIONSTRING "$WCREV$" |
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
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
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
Oops, something went wrong.