mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
Merge pull request #228 from mloskot/ml/bootstrap-verbose-on-project-jam
[master] Make bootstrap verbose about generating project-config.jam
This commit is contained in:
commit
ddcbcae481
2 changed files with 16 additions and 3 deletions
|
@ -51,7 +51,12 @@ IF "%1"=="vc12" SET TOOLSET=msvc : 12.0
|
|||
IF "%1"=="vc14" SET TOOLSET=msvc : 14.0
|
||||
IF "%1"=="vc141" SET TOOLSET=msvc : 14.1
|
||||
|
||||
ECHO import option ; > project-config.jam
|
||||
ECHO.
|
||||
ECHO Generating Boost.Build configuration in project-config.jam for %TOOLSET%...
|
||||
ECHO # Boost.Build Configuration > project-config.jam
|
||||
ECHO # Automatically generated by bootstrap.bat >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
ECHO import option ; >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
ECHO using %TOOLSET% ; >> project-config.jam
|
||||
ECHO. >> project-config.jam
|
||||
|
@ -62,7 +67,11 @@ ECHO.
|
|||
ECHO Bootstrapping is done. To build, run:
|
||||
ECHO.
|
||||
ECHO .\b2
|
||||
ECHO.
|
||||
ECHO.
|
||||
ECHO. To generate header files, run:
|
||||
ECHO.
|
||||
ECHO. .\b2 headers
|
||||
ECHO.
|
||||
ECHO To adjust configuration, edit 'project-config.jam'.
|
||||
ECHO Further information:
|
||||
ECHO.
|
||||
|
|
|
@ -328,7 +328,7 @@ if test -r "project-config.jam"; then
|
|||
fi
|
||||
|
||||
# Generate user-config.jam
|
||||
echo "Generating Boost.Build configuration in project-config.jam..."
|
||||
echo "Generating Boost.Build configuration in project-config.jam for $TOOLSET..."
|
||||
cat > project-config.jam <<EOF
|
||||
# Boost.Build Configuration
|
||||
# Automatically generated by bootstrap.sh
|
||||
|
@ -393,6 +393,10 @@ Bootstrapping is done. To build, run:
|
|||
|
||||
./b2
|
||||
|
||||
To generate header files, run:
|
||||
|
||||
./b2 headers
|
||||
|
||||
To adjust configuration, edit 'project-config.jam'.
|
||||
Further information:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue