Stop build operations on error.
authorHiroshi Inoue <h-inoue@dream.email.ne.jp>
Tue, 22 Aug 2017 01:34:18 +0000 (10:34 +0900)
committerHiroshi Inoue <h-inoue@dream.email.ne.jp>
Tue, 22 Aug 2017 01:34:18 +0000 (10:34 +0900)
winbuild/BuildAll.ps1
winbuild/platformbuild.vcxproj

index 4fc9d125c7d8148cc2c4d4c8c15863322f3fd3ba..ebf9db9bb42941217185bf57ed1e9cfa911164e1 100755 (executable)
@@ -126,7 +126,7 @@ try {
 #
 #  build 64bit dlls
 #
-   if ($Platform -ieq "x64" -or $Platform -ieq "both") {
+   if ($recordResult -and ($Platform -ieq "x64" -or $Platform -ieq "both")) {
        buildPlatform $configInfo "x64"
        if ($LastExitCode -ne 0) {
            $recordResult = $false
index 5ec4b43c6014e194952de50fe0aba506a24f0b74..10090491b1c426242791d2900eb81215f4f3bee9 100755 (executable)
@@ -1,5 +1,7 @@
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     <PropertyGroup>
+   <StopOnFirstFailure>true</StopOnFirstFailure>
+   <BuildInPararell>false</BuildInPararell>
    <Configuration>Release</Configuration>
    <srcPath>..\</srcPath>
     </PropertyGroup>