Removed old projects
[libcds.git] / projects / Win / build-msbuild.cmd
1 :: Command line arguments:\r
2 :: %1 - Visual C++ version: vc12 (2013), vc14 (2015)\r
3 :: %2 - configuration to build (Release, Debug etc)\r
4 :: %3,%4,...%9 - [optional] additional MSBuild options\r
5 \r
6 set vcXX=%1\r
7 set cfg=%2 \r
8 set MSBUILD=msbuild\r
9 \r
10 :make\r
11 for %%A in (x64 Win32) do (\r
12   %MSBUILD% %vcXX%\cds.sln /t:Clean /p:Configuration=%cfg% /p:Platform=%%A %3 %4 %5 %6 %7 %8 %9\r
13   %MSBUILD% %vcXX%\cds.sln /t:Build /p:Configuration=%cfg% /p:Platform=%%A /fl /flp:LogFile=%vcXX%_%%A.log;Encoding=UTF-8;Verbosity=minimal /v:minimal /maxcpucount %3 %4 %5 %6 %7 %8 %9\r
14 )\r