Add DevIL 1.7.8.

This commit is contained in:
rude
2013-09-26 00:20:08 +02:00
parent 6e493fb605
commit c065120c58
487 changed files with 219483 additions and 0 deletions
@@ -0,0 +1,23 @@
if "%ILNOCOPY%" == "" goto work
goto done
:work
if "%SystemRoot%" == "" goto isnotnt
echo Copying %1 to %SystemRoot%\System32...
copy %1 %SystemRoot%\System32
goto done
:isnotnt
if "%WINDIR%" == "" goto isnot95
echo Copying %1 to %WINDIR%\System...
copy %1 %WINDIR%\System
goto done
:isnot95
echo *** Unrecognised platform! ***
goto done
:done