forked from vpinball/pinmame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_vc2010_from_vc2008.bat
31 lines (27 loc) · 1.67 KB
/
create_vc2010_from_vc2008.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
copy /V /-Y "PinMAME_VC2008.sln" "PinMAME_VC2010.sln"
copy /V /-Y "InstallVPinMAME_VC2008.vcproj" "InstallVPinMAME_VC2010.vcproj"
copy /V /-Y "PinMAME_VC2008.vcproj" "PinMAME_VC2010.vcproj"
copy /V /-Y "PinMAME32_VC2008.vcproj" "PinMAME32_VC2010.vcproj"
copy /V /-Y "VPinMAME_VC2008.vcproj" "VPinMAME_VC2010.vcproj"
@cscript "simplereplace.wsf" //nologo /search:"VC2008" /replace:"VC2010" /in:"PinMAME_VC2010.sln" /out:"PinMAME_VC2010.sln"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"Visual Studio 2008" /replace:"Visual Studio 2010" /in:"PinMAME_VC2010.sln" /out:"PinMAME_VC2010.sln"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"Format Version 10.00" /replace:"Format Version 11.00" /in:"PinMAME_VC2010.sln" /out:"PinMAME_VC2010.sln"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"VC2008" /replace:"VC2010" /in:"InstallVPinMAME_VC2010.vcproj" /out:"InstallVPinMAME_VC2010.vcproj"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"VC2008" /replace:"VC2010" /in:"PinMAME_VC2010.vcproj" /out:"PinMAME_VC2010.vcproj"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"VC2008" /replace:"VC2010" /in:"PinMAME32_VC2010.vcproj" /out:"PinMAME32_VC2010.vcproj"
@if errorlevel 1 goto manual
@cscript "simplereplace.wsf" //nologo /search:"VC2008" /replace:"VC2010" /in:"VPinMAME_VC2010.vcproj" /out:"VPinMAME_VC2010.vcproj"
@if errorlevel 1 goto manual
@goto end
:manual
@echo.
@echo Replace all occurrences of VC2008 in the project files with VC2010.
:end
@echo Convert the project files with VC2010 and compile.
@echo After conversion delete the *_VC2010.vcproj files.
@pause