commit
a5cbf7061d
2 changed files with 34 additions and 7 deletions
@ -0,0 +1,29 @@ |
|||||||
|
setlocal |
||||||
|
|
||||||
|
IF %language%==cpp GOTO build_cpp |
||||||
|
IF %language%==csharp GOTO build_csharp |
||||||
|
|
||||||
|
echo Unsupported language %language%. Exiting. |
||||||
|
goto :error |
||||||
|
|
||||||
|
:build_cpp |
||||||
|
echo Building C++ |
||||||
|
mkdir build_msvc |
||||||
|
cd build_msvc |
||||||
|
cmake -G "%generator%" -DBUILD_SHARED_LIBS=%BUILD_DLL% ../cmake |
||||||
|
msbuild protobuf.sln /p:Platform=%vcplatform% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || goto error |
||||||
|
cd %configuration% |
||||||
|
tests.exe || goto error |
||||||
|
goto :EOF |
||||||
|
|
||||||
|
:build_csharp |
||||||
|
echo Building C# |
||||||
|
cd csharp\src |
||||||
|
nuget restore |
||||||
|
msbuild ProtocolBuffers.sln /p:Platform="Any CPU" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || goto error |
||||||
|
nunit-console ProtocolBuffers.Test\bin\%configuration%\Google.Protobuf.Test.dll || goto error |
||||||
|
goto :EOF |
||||||
|
|
||||||
|
:error |
||||||
|
echo Failed! |
||||||
|
EXIT /b %ERRORLEVEL% |
Loading…
Reference in new issue