]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/boostdep/examples/report.bat
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / boostdep / examples / report.bat
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
13 SET BOOSTDEP=dist\bin\boostdep.exe
14
15 FOR /f %%i IN ('git rev-parse HEAD') DO @SET REV=%%i
16
17 FOR /f %%i IN ('git rev-parse --short HEAD') DO @SET SHREV=%%i
18
19 FOR /f %%i IN ('git rev-parse --abbrev-ref HEAD') DO @SET BRANCH=%%i
20
21 REM SET FOOTER="Generated on %DATE% %TIME% from revision %BRANCH%-%SHREV%"
22 SET 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 />"
23 SET STYLESHEET=report.css
24
25 SET OPTIONS=--html-stylesheet %STYLESHEET% --html-prefix %PREFIX%
26
27 SET OUTDIR=..\report-%BRANCH%-%SHREV%
28
29 mkdir %OUTDIR%
30
31 COPY 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
39 FOR /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