2001-05-01 19:28:51 +04:00
|
|
|
#
|
|
|
|
# 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:
|
|
|
|
#
|
2001-05-09 22:53:32 +04:00
|
|
|
# TCL_LIBRARY = the full path to the tcl library found (tcl tcl80 etc)
|
2001-05-01 19:28:51 +04:00
|
|
|
# TCL_INCLUDE_PATH = the path to where tcl.h can be found
|
2001-05-09 22:53:32 +04:00
|
|
|
# TK_LIBRARY = the full path to the tk library found (tk tk80 etc)
|
2001-05-02 19:53:57 +04:00
|
|
|
# TK_INCLUDE_PATH = the path to where tk.h can be found
|
2001-05-01 19:28:51 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
# try to find the Tcl libraries in a few places and names
|
2001-05-09 22:53:32 +04:00
|
|
|
FIND_LIBRARY(TCL_LIBRARY
|
2001-05-10 01:38:33 +04:00
|
|
|
NAMES tcl tcl83 tcl82 tcl80
|
2001-05-09 22:53:32 +04:00
|
|
|
PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib)
|
2001-05-01 19:28:51 +04:00
|
|
|
|
2001-05-09 22:53:32 +04:00
|
|
|
FIND_LIBRARY(TK_LIBRARY
|
2001-05-10 01:38:33 +04:00
|
|
|
NAMES tk tk83 tk82 tk80
|
2001-05-09 22:53:32 +04:00
|
|
|
PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib)
|
2001-05-02 19:53:57 +04:00
|
|
|
|
2001-05-01 19:28:51 +04:00
|
|
|
# add in the include path
|
2001-05-02 19:53:57 +04:00
|
|
|
FIND_PATH(TCL_INCLUDE_PATH tcl.h "C:/Program Files/Tcl/include" /usr/include /usr/local/include)
|
|
|
|
FIND_PATH(TK_INCLUDE_PATH tk.h "C:/Program Files/Tcl/include" /usr/include /usr/local/include)
|