msvc2010: use backslashes in batch files

This commit is contained in:
Brad Parker 2017-07-02 17:50:26 +01:00
parent 86c9b97660
commit e5d2526949
4 changed files with 16 additions and 16 deletions

View file

@ -12,10 +12,10 @@ call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
echo msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=x64
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=x64
echo move x64\Release\RetroArch-msvc2010.exe ../../retroarch.exe
move x64\Release\RetroArch-msvc2010.exe ../../retroarch.exe
echo move x64\Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
move x64\Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
echo move x64\Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
move x64\Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo move x64\Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move x64\Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
echo Build finished.

View file

@ -9,10 +9,10 @@ call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
echo msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32
echo move Release\RetroArch-msvc2010.exe ../../retroarch.exe
move Release\RetroArch-msvc2010.exe ../../retroarch.exe
echo move Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
move Release\RetroArch-msvc2010.exe ..\..\retroarch.exe
echo move Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
move Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo move Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move Release\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
echo Build finished.

View file

@ -12,10 +12,10 @@ call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
echo msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=x64
call msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=x64
echo move x64\Debug\RetroArch-msvc2010.exe ../../retroarch.exe
move x64\Debug\RetroArch-msvc2010.exe ../../retroarch.exe
echo move x64\Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
move x64\Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
echo move x64\Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
move x64\Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo move x64\Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move x64\Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
echo Build finished.

View file

@ -9,10 +9,10 @@ call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
echo msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32
call msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32
echo move Debug\RetroArch-msvc2010.exe ../../retroarch.exe
move Debug\RetroArch-msvc2010.exe ../../retroarch.exe
echo move Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
move Debug\RetroArch-msvc2010.exe ..\..\retroarch.exe
echo move Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
move Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo move Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
move Debug\RetroArch-msvc2010.exe.intermediate.manifest ..\..\retroarch.exe.manifest
echo Build finished.