| Revision 316,
1.4 KB
checked in by mickem, 11 months ago
(diff) |
- Added proper volume support to CheckDriveSize
- Added support for delayed start to service check (default ignored)
- Added new option to CheckDriveSize ignore-unreadable which will ignore checking any unreadable disk drive.
|
| Line | |
|---|
| 1 | @echo off
|
|---|
| 2 | @call env.bat
|
|---|
| 3 | set toolset=msvc-8.0
|
|---|
| 4 |
|
|---|
| 5 | echo :: %jam% -j6 --toolset=%toolset% --with-lua=%LUA_SOURCE% --with-openssl --include-path=%NSCP_INCLUDE% --with-boost --with-cryptopp=%CRYPTOPP_SOURCE% runtime-link=static warnings=off "--with-psdk=%PLATTFORM_SDK_INCLUDE%" "--with-psdk61=%PLATTFORM_SDK_61_INCLUDE%" "--with-breakpad=%GOOGLE_BREAKPAD_INCLUDE%" %* build-binaries >> build.log
|
|---|
| 6 | %jam% -j6 --toolset=%toolset% --with-lua=%LUA_SOURCE% --with-openssl --include-path=%NSCP_INCLUDE% --with-boost --with-cryptopp=%CRYPTOPP_SOURCE% runtime-link=static warnings=off "--with-psdk=%PLATTFORM_SDK_INCLUDE%" "--with-psdk61=%PLATTFORM_SDK_61_INCLUDE%" "--with-breakpad=%GOOGLE_BREAKPAD_INCLUDE%" %* build-binaries
|
|---|
| 7 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 8 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 9 |
|
|---|
| 10 | echo :: %jam% --toolset=%toolset% warnings=off %* build-archives >> build.log
|
|---|
| 11 | %jam% --toolset=%toolset% warnings=off %* build-archives
|
|---|
| 12 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 13 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 14 |
|
|---|
| 15 | echo :: %jam% --toolset=wix "--wix=%WIX_PATH%" %1=%2 %3=%4 build-installer >> build.log
|
|---|
| 16 | %jam% --toolset=wix "--wix=%WIX_PATH%" %1=%2 %3=%4 build-installer
|
|---|
| 17 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 18 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 19 |
|
|---|
| 20 | exit /b 0
|
|---|
| 21 | goto :eof
|
|---|
| 22 |
|
|---|
| 23 | :error
|
|---|
| 24 | echo :: Error: %ERRORLEVEL% >> build.log
|
|---|
| 25 | echo *************
|
|---|
| 26 | echo * E R R O R *
|
|---|
| 27 | echo *************
|
|---|
| 28 |
|
|---|
| 29 | exit /b -1 |
|---|
Note: See
TracBrowser
for help on using the repository browser.