diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-09 21:38:33 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-09 21:38:33 (GMT) |
commit | d1b57f6053fa01c52b11de84f4cbb85d72780300 (patch) | |
tree | 7b34051130131d8af6c528961c392e1745e1ba63 /Modules | |
parent | 02bdff675d2ebf619be205680a9c4b70200c360c (diff) | |
download | CMake-d1b57f6053fa01c52b11de84f4cbb85d72780300.zip CMake-d1b57f6053fa01c52b11de84f4cbb85d72780300.tar.gz CMake-d1b57f6053fa01c52b11de84f4cbb85d72780300.tar.bz2 |
ENH: add 8.3 support
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindTCL.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindTCL.cmake b/Modules/FindTCL.cmake index e661917..c9aa65c 100644 --- a/Modules/FindTCL.cmake +++ b/Modules/FindTCL.cmake @@ -11,11 +11,11 @@ # try to find the Tcl libraries in a few places and names FIND_LIBRARY(TCL_LIBRARY - NAMES tcl tcl82 tcl80 + NAMES tcl tcl83 tcl82 tcl80 PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib) FIND_LIBRARY(TK_LIBRARY - NAMES tk tk82 tk80 + NAMES tk tk83 tk82 tk80 PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib) # add in the include path |