diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-14 18:51:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-14 18:51:08 (GMT) |
commit | b7fa820118d6989ca4d77dbfcc972c2e903bfe2a (patch) | |
tree | a5605c468a458597fff5f17485fad8cd85856e1b /Modules/FindTCL.cmake | |
parent | 805d365d479a916acf2c5638809fb046fc28dc97 (diff) | |
download | CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.zip CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.tar.gz CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.tar.bz2 |
ENH: add documentation support for modules
Diffstat (limited to 'Modules/FindTCL.cmake')
-rw-r--r-- | Modules/FindTCL.cmake | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/Modules/FindTCL.cmake b/Modules/FindTCL.cmake index 365ab11..166c740 100644 --- a/Modules/FindTCL.cmake +++ b/Modules/FindTCL.cmake @@ -1,22 +1,20 @@ -# +# - Find Tcl includes and libraries. # 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: -# -# TCL_LIBRARY = full path to the Tcl library (tcl tcl80 etc) -# TCL_LIBRARY_DEBUG = full path to the Tcl library (debug) -# TCL_STUB_LIBRARY = full path to the Tcl stub library -# TCL_STUB_LIBRARY_DEBUG = full path to the Tcl stub library (debug) +# TCL_LIBRARY = path to Tcl library (tcl tcl80) +# TCL_LIBRARY_DEBUG = path to Tcl library (debug) +# TCL_STUB_LIBRARY = path to Tcl stub library +# TCL_STUB_LIBRARY_DEBUG = path to Tcl stub library (debug) # TCL_INCLUDE_PATH = path to where tcl.h can be found -# TCL_TCLSH = full path to the tclsh binary (tcl tcl80 etc) -# TK_LIBRARY = full path to the Tk library (tk tk80 etc) -# TK_LIBRARY_DEBUG = full path to the Tk library (debug) -# TK_STUB_LIBRARY = full path to the Tk stub library -# TK_STUB_LIBRARY_DEBUG = full path to the Tk stub library (debug) +# TCL_TCLSH = path to tclsh binary (tcl tcl80) +# TK_LIBRARY = path to Tk library (tk tk80 etc) +# TK_LIBRARY_DEBUG = path to Tk library (debug) +# TK_STUB_LIBRARY = path to Tk stub library +# TK_STUB_LIBRARY_DEBUG = path to Tk stub library (debug) # TK_INCLUDE_PATH = path to where tk.h can be found # TK_INTERNAL_PATH = path to where tkWinInt.h can be found -# TK_WISH = full path to the wish binary (wish wish80 etc) -# +# TK_WISH = full path to the wish (wish wish80) INCLUDE(CMakeFindFrameworks) INCLUDE(FindTclsh) |