~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to tools/create_drascula/dists/msvc9_to_msvc8.bat

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@echo off
2
 
rem This batch file is used to convert MSVC9 (Visual Studio 2008) project files to MSVC8 (Visual Studio 2005) 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
8
 
 
9
 
if not exist rpl.exe goto no_rpl
10
 
 
11
 
echo Creating MSVC8 project files from the MSVC9 ones
12
 
copy /y msvc9\*.vcproj msvc8\
13
 
copy /y msvc9\*.sln msvc8\
14
 
rpl -e -q "Version=\"9.00\"" "Version=\"8.00\"" msvc8\*.vcproj
15
 
rpl -e -q "Version=\"9,00\"" "Version=\"8,00\"" msvc8\*.vcproj
16
 
rpl -e -q "\tTargetFrameworkVersion=\"131072\"\n" "" msvc8\*.vcproj
17
 
rpl -e -q "\t\t\t\tRandomizedBaseAddress=\"1\"\n" "" msvc8\*.vcproj
18
 
rpl -e -q "\t\t\t\tDataExecutionPrevention=\"0\"\n" "" msvc8\*.vcproj
19
 
rpl -e -q "Format Version 10.00" "Format Version 9.00" msvc8\*.sln
20
 
rpl -e -q "Format Version 10,00" "Format Version 9,00" msvc8\*.sln
21
 
rpl -e -q "# Visual C++ Express 2008" "# Visual C++ Express 2005" msvc8\*.sln
22
 
rpl -e -q "# Visual Studio 2008" "# Visual Studio 2005" msvc8\*.sln
23
 
goto the_end
24
 
 
25
 
:no_rpl
26
 
echo You need the Windows version of GNU rpl
27
 
echo Get it here:
28
 
echo http://gnuwin32.sourceforge.net/packages/rpl.htm
29
 
echo Place rpl.exe from the bin folder inside the archive in the folder where
30
 
echo this batch file resides
31
 
 
32
 
:the_end
33
 
pause