blob: c9aa65c20e52f1c48bf5b3027b549ac96fb51a0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# 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 = the full path to the tcl library found (tcl tcl80 etc)
# TCL_INCLUDE_PATH = the path to where tcl.h can be found
# TK_LIBRARY = the full path to the tk library found (tk tk80 etc)
# TK_INCLUDE_PATH = the path to where tk.h can be found
#
# try to find the Tcl libraries in a few places and names
FIND_LIBRARY(TCL_LIBRARY
NAMES tcl tcl83 tcl82 tcl80
PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib)
FIND_LIBRARY(TK_LIBRARY
NAMES tk tk83 tk82 tk80
PATHS /usr/lib "C:/Program Files/Tcl/lib" /usr/local/lib)
# add in the include path
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)
|