- postprocessing configuration is no (partially) configurable. - adding linsk to Assimp homepage/bugtracker/forums. - updating about dialog. - fixing colors of texture view (tiny array overrun ...). - minor UI theme adjustments. - 'setup file extensions' works again. - normal smooth limit is now used for primary import, too. - minor spelling fixes in the UI. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@417 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
28 lines
676 B
Batchfile
28 lines
676 B
Batchfile
@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.
|
|
rem ./bin shouldn't have any local modifications
|
|
|
|
cd ..\bin
|
|
svnversion > tmpfile.txt
|
|
set /p addtext= < tmpfile.txt
|
|
del /q tmpfile.txt
|
|
cd ..\mkutil
|
|
|
|
echo #define SVNRevision > tmpfile.txt
|
|
|
|
if exist revision.h del /q revision.h
|
|
for /f "delims=" %%l in (tmpfile.txt) Do (
|
|
echo %%l %addtext% >> revision.h
|
|
)
|
|
del /q tmpfile.txt
|
|
|
|
|
|
|