mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Command gendoc improved to: - generate Reference Manual documentation (OCCT classes reference) with option -refman; option -overview can be used for generation of overview documentation; - generate PDF documents for all User Guides automatically (for files listed in FILES_PDF.txt); - check availability of third-party tools (Doxygen, Inkscape etc.) and properly report warnings and errors. - use templates of configuration files for third-party tools instead of their generation. These template files are located in dox/resources folder Tcl scripts are moved from dox folder to adm. Doxygen warnings are eliminated. Moved all auxilary functions to occaux.tcl. Fixed Reference manual generation on *nix platform. Fixed PDF generation on *nix platforms.
9 lines
259 B
Tcl
9 lines
259 B
Tcl
#!/usr/bin/tclsh
|
|
|
|
# Command-line starter for occdoc command, use it as follows:
|
|
# tclsh> source dox/start.tcl [arguments]
|
|
|
|
source [file join [file dirname [info script]] occaux.tcl]
|
|
source [file join [file dirname [info script]] gendoc.tcl]
|
|
gendoc {*}$::argv
|