build_msbuild.cmd 650 B

1234567891011121314151617181920212223242526
  1. if "%NOBUILD%"=="1" goto EOF
  2. echo %TIME% > %BUILD_DIR%\buildtime.txt
  3. msbuild ^
  4. %BUILD_DIR%\Blender.sln ^
  5. /target:build ^
  6. /property:Configuration=%BUILD_TYPE% ^
  7. /maxcpucount:2 ^
  8. /verbosity:minimal ^
  9. /p:platform=%MSBUILD_PLATFORM% ^
  10. /flp:Summary;Verbosity=minimal;LogFile=%BUILD_DIR%\Build.log
  11. if errorlevel 1 (
  12. echo Error during build, see %BUILD_DIR%\Build.log for details
  13. exit /b 1
  14. )
  15. msbuild ^
  16. %BUILD_DIR%\INSTALL.vcxproj ^
  17. /property:Configuration=%BUILD_TYPE% ^
  18. /verbosity:minimal ^
  19. /p:platform=%MSBUILD_PLATFORM%
  20. if errorlevel 1 (
  21. echo Error during install phase
  22. exit /b 1
  23. )
  24. echo %TIME% >> %BUILD_DIR%\buildtime.txt
  25. :EOF