mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 14:19:19 +02:00

* FPDoc 3.3.X changed the syntax for the --footer argument. It uses an ''@' prefix for file names and treats anythine else as text for the footer.. build_lcl_docs did not handle that syntax. Since we do not know which version of FPDoc will be used, we must handle both. * Accepts --footer=filename.ext for 3.2.X. * Accepts --footer=@filename.ext for 3.3.X. * Accepts --footer="Your text here" for 3.3.X. * File name expansion and validation occurs in the setter for TFPDocRun.FooterFilename. * Modifies README.txt and all of the script files (.bat, .sh) to document requirements and usage.
32 lines
1.3 KiB
Batchfile
32 lines
1.3 KiB
Batchfile
REM
|
|
REM Builds Lazarus documentation for LCL and LazUtils in CHM format.
|
|
REM
|
|
REM Requires a $(LazarusDir)\docs\chm directory which contains rtl.xct and fcl.xct.
|
|
REM Process fails if either the directory or the files are missing.
|
|
REM Process creates .\lcl and .\lazutils subdirectories for CHM output.
|
|
REM Update the content in locallclfooter.xml before starting the script.
|
|
REM
|
|
REM Notes:
|
|
REM
|
|
REM 1 - If necessary, please fix the path so it finds fpdoc.exe (normally in your fpc compiler dir)
|
|
REM 2 - Before running this file, first compile the project build_lcl_docs.lpi
|
|
REM ..\..\lazbuild.exe build_lcl_docs.lpi
|
|
REM
|
|
|
|
REM PATH=C:\lazarus\fpc\3.2.2\bin\x86_64-win64;%PATH%
|
|
PATH=C:\fpc331\fpc\bin\x86_64-win64;%PATH%
|
|
|
|
REM build chm output without footers
|
|
.\build_lcl_docs.exe --outfmt=chm --fpcdocs=..\chm
|
|
|
|
REM For FPDoc 3.2.X: build chm output with footers in locallclfooter.xml
|
|
REM .\build_lcl_docs.exe --outfmt=chm --fpcdocs=..\chm --footer=locallclfooter.xml
|
|
|
|
REM For FPDoc 3.3.X: build chm output with footers in locallclfooter.xml
|
|
REM .\build_lcl_docs.exe --outfmt=chm --fpcdocs=..\chm --footer=@locallclfooter.xml
|
|
|
|
REM For FPDoc 3.3.X: build chm output with footer text
|
|
REM .\build_lcl_docs.exe --outfmt=chm --fpcdocs=..\chm --footer="(c) 2022. All rights reserved."
|
|
|
|
pause
|