rework log output of msvc builds.

This commit is contained in:
aliaspider 2017-04-11 18:18:22 +01:00
parent 64b057c8b8
commit 6b59d57620
4 changed files with 47 additions and 42 deletions

View File

@ -1,18 +1,21 @@
@echo off
echo cd pkg\msvc
cd pkg\msvc
echo Setting MSVC Environment...
rem echo "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
rem del x64\Release\RetroArch-msvc2010.exe 2>nul
echo Appending build log...
echo %date% %time% >buildlog.txt
set platform=
set PLATFORM=
set tmp=
set TMP=
echo Building RetroArch...
echo msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=x64 /flp:LogFile=buildlog.txt;verbosity=normal;Append
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=x64 /flp:LogFile=buildlog.txt;verbosity=normal;Append
echo Moving dist files...
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 Build finished.

View File

@ -1,18 +1,18 @@
@echo off
echo cd pkg\msvc
cd pkg\msvc
echo Setting MSVC Environment...
echo "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
rem del Release\RetroArch-msvc2010.exe 2>nul
echo Appending build log...
echo %date% %time% >buildlog.txt
set platform=
set PLATFORM=
set tmp=
set TMP=
echo Building RetroArch...
call msbuild RetroArch-msvc2010.sln /p:configuration=Release;platform=win32 /flp:LogFile=buildlog.txt;verbosity=normal;Append
echo Moving dist files...
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.intermediate.manifest ../../retroarch.exe.manifest
move Release\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo Build finished.

View File

@ -1,18 +1,21 @@
@echo off
echo cd pkg\msvc
cd pkg\msvc
echo Setting MSVC Environment...
rem echo "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
rem del x64\Debug\RetroArch-msvc2010.exe 2>nul
echo Appending build log...
echo %date% %time% >buildlog.txt
set platform=
set PLATFORM=
set tmp=
set TMP=
echo Building RetroArch...
call msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=x64 /flp:LogFile=buildlog.txt;verbosity=normal;Append
echo Moving dist files...
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.intermediate.manifest ../../retroarch.exe.manifest
move x64\Debug\RetroArch-msvc2010.exe.intermediate.manifest ../../retroarch.exe.manifest
echo Build finished.

View File

@ -1,18 +1,17 @@
@echo off
echo cd pkg\msvc
cd pkg\msvc
echo Setting MSVC Environment...
echo "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
rem del Debug\RetroArch-msvc2010.exe 2>nul
echo Appending build log...
echo %date% %time% >buildlog.txt
set platform=
set PLATFORM=
set tmp=
set TMP=
echo Building RetroArch...
echo msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32 /flp:LogFile=buildlog.txt;verbosity=normal;Append
call msbuild RetroArch-msvc2010.sln /p:configuration=Debug;platform=win32 /flp:LogFile=buildlog.txt;verbosity=normal;Append
echo Moving dist files...
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 Build finished.