1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/gendoc.bat
abv 6a0964c23e 0024316: Make building with different versions of Tcl easier
On Windows with MSVC Tcl library is linked using #pragma statement instead of using project properties, to allow easy switch between Tcl versions. In gendoc.bat, tclsh.exe is called instead of tclsh86.exe, to avoid dependency on hard-coded Tcl version.

Tcl-dependent code (unused functions) removed from QABugs package.
2013-11-05 10:20:00 +04:00

24 lines
889 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"] (
tclsh.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.
)