mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
20 lines
617 B
Bash
20 lines
617 B
Bash
#!/bin/bash
|
|
|
|
# Helper script to run generation of OCCT documentation on Linux.
|
|
# Running it requires that Tcl, Doxygen, and MikTex (for PDF generation) should be in the PATH
|
|
|
|
anArgs=$*
|
|
anOldPath="$PATH"
|
|
anOldLd="$LD_LIBRARY_PATH"
|
|
anOldDyLd="$DYLD_LIBRARY_PATH"
|
|
|
|
# go to the script directory
|
|
aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
|
|
if [ -e "${aScriptPath}/env.sh" ]; then source "${aScriptPath}/env.sh"; fi
|
|
|
|
tclsh "${aScriptPath}/adm/start.tcl" $anArgs
|
|
|
|
export PATH="$anOldPath"
|
|
export LD_LIBRARY_PATH="$anOldLd"
|
|
export DYLD_LIBRARY_PATH="$anOldDyLd"
|