Hooked up the pathfinder so that it seems to work. Animation opcode 0x12.
[scummvm-innocent.git] / dists / msvc8_to_msvc9.bat
blob1faacbd1a62173ab2fcf4d908f7bce5f51be8b8d
1 @echo off
2 rem This batch file is used to convert MSVC8 (Visual Studio 2005) project files to MSVC9 (Visual Studio 2008) ones
3 rem You need the Windows version of GNU rpl
4 rem Get it here:
5 rem http://gnuwin32.sourceforge.net/packages/rpl.htm
6 rem Place rpl.exe from the bin folder inside the archive in the folder where
7 rem this batch file resides
9 if not exist rpl.exe goto no_rpl
11 echo Creating MSVC9 project files from the MSVC8 ones
12 copy /y msvc8\*.vcproj msvc9\
13 copy /y msvc8\*.sln msvc9\
14 copy /y msvc8\*.vsprops msvc9\
15 rpl -e -q "Version=\"8.00\"" "Version=\"9.00\"" msvc9\*.vcproj
16 rpl -e -q "Version=\"8,00\"" "Version=\"9,00\"" msvc9\*.vcproj
17 rpl -e -q "Keyword=\"Win32Proj\"" "Keyword=\"Win32Proj\"\n\tTargetFrameworkVersion=\"131072\"" msvc9\*.vcproj
18 rpl -e -q "Format Version 9.00" "Format Version 10.00" msvc9\scummvm.sln
19 rpl -e -q "Format Version 9,00" "Format Version 10,00" msvc9\scummvm.sln
20 goto the_end
22 :no_rpl
23 echo You need the Windows version of GNU rpl
24 echo Get it here:
25 echo http://gnuwin32.sourceforge.net/packages/rpl.htm
26 echo Place rpl.exe from the bin folder inside the archive in the folder where
27 echo this batch file resides
29 :the_end
30 pause