TCL_INCLUDE
Specifies additional paths for searching for Tcl scripts.
Syntax
TCL_INCLUDE directory1;directory2;etc...
Description
Specifies additional paths for searching for Tcl scripts. When
using the ::hwt::Source command, these paths are additionally
searched, in addition to the default application specific paths. Specifying
additional paths can allow you to more quickly launch scripts without having to type
the full path.
- directory
- The path to the directory to search. Multiple paths can be specified, separated by a semi-colon. The first path encountered that contains the file will be used. It is important to use Unix/Linux style directory separators / instead of \.
Examples
To set the directory E:\mydir: TCL_INCLUDE E:/mydir.
To set the directory to E:\mydir and C:\mysettings: TCL_INCLUDE E:/mydir;C:/mysettings.
Errors
None.