1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/gendoc.bat
ibs 72b7576f48 0023962: Moving OCCT documentation to sources
OCCT documentation (Overview and User Guides) has been converted from MS Word files to text-based MarkDown format and added to OCCT sources, in the new subfolder 'dox'. The HTML and PDF articles can be generated from the sources using Doxygen and MiKTeX. See the file OCCT_Docs_HowTo.md for details on the new documentation system.

This branch includes:

- new folder structure for Open CASCADE documentation
- sources of almost all OCCT User Guides and Overview
- tcl and bat scripts, which allow to generate HTML and PDF articles
2013-10-17 14:50:43 +04:00

24 lines
891 B
Batchfile

@echo off
rem Helper script to run generation of OCCT documentation on Windows.
rem Running it requires that Tcl, Doxygen, and MikTex (for PDF generation)
rem should be in the PATH
if exist "%~dp0env.bat" (
call "%~dp0env.bat"
)
if not ["%1"] == ["-h"] (
tclsh85.exe %~dp0dox/start.tcl %*
) else (
echo.
echo gen.bat options:
echo -html : To generate HTML files ^(cannot be used with -pdf^)
echo -pdf : To generate PDF files ^(cannot be used with -html^)
echo -m^=^<modules_list^> : Specifies list of articles to generate. If it is not specified, all files, mentioned in FILES.txt are processed
echo "-l=<document_name> : Specifies the article caption for a single document"
echo -h : Prints help message
echo -v : Specifies the Verbose mode ^(info on all script actions is shown^)
echo.
)