2001-05-01 15:28:51 +00: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:
|
|
|
|
#
|
2002-07-26 18:06:44 +00:00
|
|
|
# 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_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)
|
|
|
|
# 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)
|
2001-05-01 15:28:51 +00:00
|
|
|
#
|
|
|
|
|
2001-12-06 16:52:12 +00:00
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/FindTclsh.cmake)
|
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/FindWish.cmake)
|
2001-05-25 01:11:27 +00:00
|
|
|
|
|
|
|
GET_FILENAME_COMPONENT(TCL_TCLSH_PATH ${TCL_TCLSH} PATH)
|
|
|
|
|
|
|
|
GET_FILENAME_COMPONENT(TK_WISH_PATH ${TK_WISH} PATH)
|
|
|
|
|
2002-07-26 18:06:44 +00:00
|
|
|
SET (TCLTK_POSSIBLE_LIB_PATHS
|
2002-08-09 14:04:34 +00:00
|
|
|
"${TCL_TCLSH_PATH}/../lib"
|
|
|
|
"${TK_WISH_PATH}/../lib"
|
2001-05-11 21:11:25 +00:00
|
|
|
/usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
"C:/Program Files/Tcl/lib"
|
2001-12-19 16:38:59 +00:00
|
|
|
"C:/Tcl/lib"
|
2001-07-17 13:54:05 +00:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.4;Root]/lib
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.3;Root]/lib
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.2;Root]/lib
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.0;Root]/lib
|
2001-05-11 21:11:25 +00:00
|
|
|
)
|
2001-05-01 15:28:51 +00:00
|
|
|
|
2002-07-26 18:06:44 +00:00
|
|
|
FIND_LIBRARY(TCL_LIBRARY
|
|
|
|
NAMES tcl tcl84 tcl8.4 tcl83 tcl8.3 tcl82 tcl8.2 tcl80 tcl8.0
|
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_LIBRARY(TCL_LIBRARY_DEBUG
|
|
|
|
NAMES tcld tcl84d tcl8.4d tcl83d tcl8.3d tcl82d tcl8.2d tcl80d tcl8.0d
|
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
2002-07-25 15:10:54 +00:00
|
|
|
FIND_LIBRARY(TCL_STUB_LIBRARY
|
|
|
|
NAMES tclstub tclstub84 tclstub8.4 tclstub83 tclstub8.3 tclstub82 tclstub8.2 tclstub80 tclstub8.0
|
2002-07-26 18:06:44 +00:00
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_LIBRARY(TCL_STUB_LIBRARY_DEBUG
|
|
|
|
NAMES tclstubd tclstub84d tclstub8.4d tclstub83d tclstub8.3d tclstub82d tclstub8.2d tclstub80d tclstub8.0d
|
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
2002-07-25 15:10:54 +00:00
|
|
|
)
|
|
|
|
|
2001-05-09 18:53:32 +00:00
|
|
|
FIND_LIBRARY(TK_LIBRARY
|
2001-08-01 15:19:01 +00:00
|
|
|
NAMES tk tk84 tk8.4 tk83 tk8.3 tk82 tk8.2 tk80 tk8.0
|
2002-07-26 18:06:44 +00:00
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_LIBRARY(TK_LIBRARY_DEBUG
|
|
|
|
NAMES tkd tk84d tk8.4d tk83d tk8.3d tk82d tk8.2d tk80d tk8.0d
|
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
2001-05-11 21:11:25 +00:00
|
|
|
)
|
2001-05-02 15:53:57 +00:00
|
|
|
|
2002-07-25 15:10:54 +00:00
|
|
|
FIND_LIBRARY(TK_STUB_LIBRARY
|
|
|
|
NAMES tkstub tkstub84 tkstub8.4 tkstub83 tkstub8.3 tkstub82 tkstub8.2 tkstub80 tkstub8.0
|
2002-07-26 18:06:44 +00:00
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
2002-07-25 15:10:54 +00:00
|
|
|
)
|
|
|
|
|
2002-07-26 18:06:44 +00:00
|
|
|
FIND_LIBRARY(TK_STUB_LIBRARY_DEBUG
|
|
|
|
NAMES tkstubd tkstub84d tkstub8.4d tkstub83d tkstub8.3d tkstub82d tkstub8.2d tkstub80d tkstub8.0d
|
|
|
|
PATHS ${TCLTK_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
|
|
|
SET (TCLTK_POSSIBLE_INCLUDE_PATHS
|
2002-07-29 13:46:50 +00:00
|
|
|
"${TCL_TCLSH_PATH}/../include"
|
|
|
|
"${TK_WISH_PATH}/../include"
|
2001-05-11 21:11:25 +00:00
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
2002-07-26 18:06:44 +00:00
|
|
|
/usr/include/tcl8.4
|
2002-04-03 18:53:20 +00:00
|
|
|
/usr/include/tcl8.3
|
2002-07-26 18:06:44 +00:00
|
|
|
/usr/include/tcl8.2
|
|
|
|
/usr/include/tcl8.0
|
2001-05-11 21:11:25 +00:00
|
|
|
"C:/Program Files/Tcl/include"
|
2001-12-19 16:38:59 +00:00
|
|
|
"C:/Tcl/include"
|
2001-07-17 13:54:05 +00:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.4;Root]/include
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.3;Root]/include
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.2;Root]/include
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Scriptics\\Tcl\\8.0;Root]/include
|
2001-05-11 21:11:25 +00:00
|
|
|
)
|
|
|
|
|
2002-07-26 18:06:44 +00:00
|
|
|
FIND_PATH(TCL_INCLUDE_PATH tcl.h
|
|
|
|
${TCLTK_POSSIBLE_INCLUDE_PATHS}
|
|
|
|
)
|
|
|
|
|
2001-05-11 21:11:25 +00:00
|
|
|
FIND_PATH(TK_INCLUDE_PATH tk.h
|
2002-07-26 18:06:44 +00:00
|
|
|
${TCLTK_POSSIBLE_INCLUDE_PATHS}
|
2001-05-25 01:11:27 +00:00
|
|
|
)
|
|
|
|
|
2001-11-26 20:45:59 +00:00
|
|
|
IF (WIN32)
|
|
|
|
FIND_PATH(TK_INTERNAL_PATH tkWinInt.h
|
2002-07-26 18:06:44 +00:00
|
|
|
${TCLTK_POSSIBLE_INCLUDE_PATHS}
|
2001-11-26 20:45:59 +00:00
|
|
|
)
|
2001-11-27 20:32:57 +00:00
|
|
|
MARK_AS_ADVANCED(TK_INTERNAL_PATH)
|
2001-11-30 20:55:45 +00:00
|
|
|
|
|
|
|
MARK_AS_ADVANCED(
|
2001-12-04 15:53:24 +00:00
|
|
|
TCL_TCLSH_PATH
|
|
|
|
TK_WISH_PATH
|
2001-11-30 20:55:45 +00:00
|
|
|
TCL_INCLUDE_PATH
|
|
|
|
TK_INCLUDE_PATH
|
|
|
|
TCL_LIBRARY
|
2002-07-26 18:06:44 +00:00
|
|
|
TCL_LIBRARY_DEBUG
|
2001-11-30 20:55:45 +00:00
|
|
|
TK_LIBRARY
|
2002-07-26 18:06:44 +00:00
|
|
|
TK_LIBRARY_DEBUG
|
2001-11-30 20:55:45 +00:00
|
|
|
)
|
2001-11-26 20:45:59 +00:00
|
|
|
ENDIF(WIN32)
|
2001-11-27 20:32:57 +00:00
|
|
|
|
2002-09-06 17:56:35 +00:00
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
TCL_STUB_LIBRARY
|
|
|
|
TCL_STUB_LIBRARY_DEBUG
|
|
|
|
TK_STUB_LIBRARY
|
|
|
|
TK_STUB_LIBRARY_DEBUG
|
|
|
|
)
|