1@REM This is an example cmd.exe batch script 2@REM that uses boostdep.exe to generate a 3@REM complete Boost dependency report. 4@REM 5@REM It needs to be run from the Boost root. 6@REM 7@REM Copyright 2014, 2015, 2017 Peter Dimov 8@REM 9@REM Distributed under the Boost Software License, Version 1.0. 10@REM See accompanying file LICENSE_1_0.txt or copy at 11@REM http://www.boost.org/LICENSE_1_0.txt 12 13SET BOOSTDEP=dist\bin\boostdep.exe 14 15FOR /f %%i IN ('git rev-parse HEAD') DO @SET REV=%%i 16 17FOR /f %%i IN ('git rev-parse --short HEAD') DO @SET SHREV=%%i 18 19FOR /f %%i IN ('git rev-parse --abbrev-ref HEAD') DO @SET BRANCH=%%i 20 21REM SET FOOTER="Generated on %DATE% %TIME% from revision %BRANCH%-%SHREV%" 22SET PREFIX="<div class='logo'><div class='upper'>boost</div><div class='lower'>Dependency Report</div><div class='description'>%BRANCH%-%SHREV%, %DATE% %TIME%</div></div><hr />" 23SET STYLESHEET=report.css 24 25SET OPTIONS=--html-stylesheet %STYLESHEET% --html-prefix %PREFIX% 26 27SET OUTDIR=..\report-%BRANCH%-%SHREV% 28 29mkdir %OUTDIR% 30 31COPY tools\boostdep\examples\%STYLESHEET% %OUTDIR% 32 33%BOOSTDEP% --list-modules > %OUTDIR%\list-modules.txt 34 35%BOOSTDEP% %OPTIONS% --html-title "Boost Module Overview" --html --module-overview > %OUTDIR%\module-overview.html 36%BOOSTDEP% %OPTIONS% --html-title "Boost Module Levels" --html --module-levels > %OUTDIR%\module-levels.html 37%BOOSTDEP% %OPTIONS% --html-title "Boost Module Weights" --html --module-weights > %OUTDIR%\module-weights.html 38 39FOR /f %%i IN (%OUTDIR%\list-modules.txt) DO %BOOSTDEP% --html-title "Boost Dependency Report for %%i" %OPTIONS% --html --primary %%i --secondary %%i --reverse %%i > %OUTDIR%\%%i.html 40