2017-05-10 20:29:11 +03:00
|
|
|
@echo off
|
2019-10-24 22:43:35 +03:00
|
|
|
cd %~dp0
|
2018-03-31 03:05:05 +03:00
|
|
|
call tools\gen-version.cmd
|
2017-05-11 23:48:49 +03:00
|
|
|
@setlocal ENABLEEXTENSIONS
|
2017-05-10 20:29:11 +03:00
|
|
|
|
2018-09-04 20:24:51 +03:00
|
|
|
echo "Building using Visual Studio 2017 tools"
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat"
|
2017-05-10 20:29:11 +03:00
|
|
|
|
|
|
|
set MAXCPUCOUNT=%NUMBER_OF_PROCESSORS%
|
|
|
|
set platform=
|
2019-03-29 02:40:31 +03:00
|
|
|
set SOLUTION=Solutions\MSTelemetrySDK.sln
|
2017-05-10 20:29:11 +03:00
|
|
|
|
2018-09-04 20:24:51 +03:00
|
|
|
msbuild %SOLUTION% /target:sqlite,zlib,sqlite-uwp,win32-dll,win32-lib,net40,win10-cs,win10-dll,Tests\gmock,Tests\gtest,Tests\UnitTests,Tests\FuncTests /p:BuildProjectReferences=true /maxcpucount:%MAXCPUCOUNT% /detailedsummary /p:Configuration=Release /p:Platform=Win32
|
2019-04-06 02:12:28 +03:00
|
|
|
if errorLevel 1 goto end
|
2018-03-31 03:05:05 +03:00
|
|
|
Solutions\out\Release\Win32\UnitTests\UnitTests.exe
|
2019-04-06 02:12:28 +03:00
|
|
|
if errorLevel 1 goto end
|
2018-03-31 03:05:05 +03:00
|
|
|
Solutions\out\Release\Win32\FuncTests\FuncTests.exe
|
2019-04-06 02:12:28 +03:00
|
|
|
:end
|