2009-02-12 13:40:32 +00:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
rem -----------------------------------------------------
|
|
|
|
rem Tiny batch script to build the input file revision.h
|
|
|
|
rem revision.h contains the revision number of the wc.
|
|
|
|
rem It is included by assimp.rc.
|
|
|
|
rem -----------------------------------------------------
|
|
|
|
|
|
|
|
rem This is not very elegant, but it works.
|
2009-04-10 21:59:22 +00:00
|
|
|
rem ./bin shouldn't have any local modifications
|
2009-02-12 13:40:32 +00:00
|
|
|
|
|
|
|
cd ..\bin
|
|
|
|
svnversion > tmpfile.txt
|
|
|
|
set /p addtext= < tmpfile.txt
|
|
|
|
del /q tmpfile.txt
|
|
|
|
cd ..\mkutil
|
|
|
|
|
2009-05-09 23:27:48 +00:00
|
|
|
echo #define SVNRevision > tmpfile.txt
|
2009-02-12 13:40:32 +00:00
|
|
|
|
2009-05-09 23:27:48 +00:00
|
|
|
if exist revision.h del /q revision.h
|
|
|
|
for /f "delims=" %%l in (tmpfile.txt) Do (
|
|
|
|
echo %%l %addtext% >> revision.h
|
2009-02-12 13:40:32 +00:00
|
|
|
)
|
2009-05-09 23:27:48 +00:00
|
|
|
del /q tmpfile.txt
|
2009-02-12 13:40:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|