mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-08 22:37:04 +08:00
FindTclsh: Update documentation
- Added examples section - Extended the module documentation and mentioned the wrapper FindTCL module. - The Tclsh_FOUND variable used. TCLSH_FOUND is also set to the sam value by the find_package_handle_standard_args().
This commit is contained in:
parent
8d034572fd
commit
8433a9e3f7
@ -5,16 +5,41 @@
|
||||
FindTclsh
|
||||
---------
|
||||
|
||||
Find tclsh
|
||||
Finds the Tcl shell command-line executable (``tclsh``), which includes the Tcl
|
||||
(Tool Command Language) interpreter.
|
||||
|
||||
This module finds if TCL is installed and determines where the include
|
||||
files and libraries are. It also determines what the name of the
|
||||
library is. This code sets the following variables:
|
||||
Result Variables
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
::
|
||||
This module defines the following variables:
|
||||
|
||||
TCLSH_FOUND = TRUE if tclsh has been found
|
||||
TCL_TCLSH = the path to the tclsh executable
|
||||
``Tclsh_FOUND``
|
||||
Boolean indicating whether the ``tclsh`` executable (and the requested
|
||||
version, if specified) is found. For backward compatibility, the
|
||||
``TCLSH_FOUND`` variable is also set to the same value.
|
||||
|
||||
Cache Variables
|
||||
^^^^^^^^^^^^^^^
|
||||
|
||||
The following cache variables may also be set:
|
||||
|
||||
``TCL_TCLSH``
|
||||
The path to the ``tclsh`` executable.
|
||||
|
||||
Examples
|
||||
^^^^^^^^
|
||||
|
||||
Finding the ``tclsh`` command-line executable:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
find_package(Tclsh)
|
||||
|
||||
See Also
|
||||
^^^^^^^^
|
||||
|
||||
* The :module:`FindTCL` module to find the Tcl installation.
|
||||
* The :module:`FindTclStub` module to find the Tcl Stubs Library.
|
||||
#]=======================================================================]
|
||||
|
||||
get_filename_component(TK_WISH_PATH "${TK_WISH}" PATH)
|
||||
|
Loading…
x
Reference in New Issue
Block a user