if ($buildwhat and $vcver >= 10.00)
{
system(
- "msbuild $buildwhat.vcxproj $msbflags /verbosity:normal /p:Configuration=$bconf"
+ "msbuild $buildwhat.vcxproj /verbosity:normal $msbflags /p:Configuration=$bconf"
);
}
elsif ($buildwhat)
}
else
{
- system("msbuild pgsql.sln $msbflags /verbosity:normal /p:Configuration=$bconf");
+ system("msbuild pgsql.sln /verbosity:normal $msbflags /p:Configuration=$bconf");
}
# report status
cd %D%
REM Clean up ecpg regression test files
-msbuild %MSBFLAGS% /NoLogo ecpg_regression.proj /t:clean /v:q
+msbuild ecpg_regression.proj /NoLogo /v:q %MSBFLAGS% /t:clean
goto :eof