2001-05-11 18:27:46 +04:00
|
|
|
#
|
|
|
|
# This module finds if Python 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:
|
|
|
|
#
|
|
|
|
# PYTHON_LIBRARY = the full path to the library found
|
|
|
|
# PYTHON_INCLUDE_PATH = the path to where tcl.h can be found
|
|
|
|
# PYTHON_DEBUG_LIBRARY = the full path to the debug library found
|
|
|
|
#
|
|
|
|
|
2001-11-30 18:23:00 +03:00
|
|
|
IF(WIN32)
|
|
|
|
FIND_LIBRARY(PYTHON_DEBUG_LIBRARY
|
2002-12-10 00:22:44 +03:00
|
|
|
NAMES python23_d python22_d python21_d python20_d python
|
2001-11-30 18:23:00 +03:00
|
|
|
PATHS
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath]/libs/Debug
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath]/libs
|
2002-11-14 17:38:45 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.2\\InstallPath]/libs/Debug
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.2\\InstallPath]/libs
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/libs/Debug
|
2001-11-30 18:23:00 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/libs
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/libs/Debug
|
2001-11-30 18:23:00 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/libs
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.6\\InstallPath]/libs/Debug
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.6\\InstallPath]/libs
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.5\\InstallPath]/libs/Debug
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.5\\InstallPath]/libs
|
2001-11-30 18:23:00 +03:00
|
|
|
)
|
|
|
|
ENDIF(WIN32)
|
2001-05-11 18:27:46 +04:00
|
|
|
|
2001-05-11 21:58:35 +04:00
|
|
|
FIND_LIBRARY(PYTHON_LIBRARY
|
2002-12-10 00:22:44 +03:00
|
|
|
NAMES python23 python2.3 python22 python2.2 python21 python2.1
|
|
|
|
python20 python2.0 python16 python1.6 python15 python1.5
|
2001-05-11 18:27:46 +04:00
|
|
|
PATHS
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/lib/python2.3/config
|
2002-11-14 17:38:45 +03:00
|
|
|
/usr/lib/python2.2/config
|
2001-07-16 05:10:10 +04:00
|
|
|
/usr/lib/python2.1/config
|
|
|
|
/usr/lib/python2.0/config
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/lib/python1.6/config
|
2002-11-14 17:38:45 +03:00
|
|
|
/usr/lib/python1.5/config
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/lib
|
2001-05-11 18:27:46 +04:00
|
|
|
/usr/local/lib
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath]/libs
|
2002-11-14 17:38:45 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.2\\InstallPath]/libs
|
2001-07-17 17:54:05 +04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/libs
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/libs
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.6\\InstallPath]/libs
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.5\\InstallPath]/libs
|
2001-05-11 18:27:46 +04:00
|
|
|
)
|
2001-12-04 18:27:04 +03:00
|
|
|
|
2001-05-11 18:27:46 +04:00
|
|
|
FIND_PATH(PYTHON_INCLUDE_PATH Python.h
|
2003-01-04 01:36:34 +03:00
|
|
|
~/Library/Frameworks/Python.framework/Headers
|
|
|
|
/Library/Frameworks/Python.framework/Headers
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3
|
|
|
|
/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/2.2/include/python2.2
|
|
|
|
/Library/Frameworks/Python.framework/Versions/2.2/include/python2.2
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/2.1/include/python2.1
|
|
|
|
/Library/Frameworks/Python.framework/Versions/2.1/include/python2.1
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/2.0/include/python2.0
|
|
|
|
/Library/Frameworks/Python.framework/Versions/2.0/include/python2.0
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/1.6/include/python1.6
|
|
|
|
/Library/Frameworks/Python.framework/Versions/1.6/include/python1.6
|
|
|
|
~/Library/Frameworks/Python.framework/Versions/1.5/include/python1.5
|
|
|
|
/Library/Frameworks/Python.framework/Versions/1.5/include/python1.5
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/include/python2.3
|
2002-11-14 17:38:45 +03:00
|
|
|
/usr/include/python2.2
|
2001-07-16 05:10:10 +04:00
|
|
|
/usr/include/python2.1
|
|
|
|
/usr/include/python2.0
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/include/python1.6
|
2002-11-14 17:38:45 +03:00
|
|
|
/usr/include/python1.5
|
2002-12-10 00:22:44 +03:00
|
|
|
/usr/include
|
2001-05-11 18:27:46 +04:00
|
|
|
/usr/local/include
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.3\\InstallPath]/include
|
2002-11-14 17:38:45 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.2\\InstallPath]/include
|
2001-07-17 17:54:05 +04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/include
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/include
|
2002-12-10 00:22:44 +03:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.6\\InstallPath]/include
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\1.5\\InstallPath]/include
|
2001-05-11 18:27:46 +04:00
|
|
|
)
|
|
|
|
|
2001-12-04 18:27:04 +03:00
|
|
|
IF (WIN32)
|
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
PYTHON_DEBUG_LIBRARY
|
|
|
|
PYTHON_LIBRARY
|
|
|
|
PYTHON_INCLUDE_PATH
|
|
|
|
)
|
|
|
|
ENDIF(WIN32)
|
2002-12-27 19:14:52 +03:00
|
|
|
|
|
|
|
# Python Should be built and installed as a Framework on OSX
|
|
|
|
IF (APPLE)
|
2003-01-04 01:36:34 +03:00
|
|
|
IF(EXISTS ~/Library/Frameworks/Python.framework)
|
|
|
|
SET(PYTHON_HAVE_FRAMEWORK 1)
|
|
|
|
ENDIF(EXISTS ~/Library/Frameworks/Python.framework)
|
|
|
|
IF(EXISTS /Library/Frameworks/Python.framework)
|
|
|
|
SET(PYTHON_HAVE_FRAMEWORK 1)
|
|
|
|
ENDIF(EXISTS /Library/Frameworks/Python.framework)
|
|
|
|
IF("${PYTHON_INCLUDE_PATH}" MATCHES "Python\\.framework")
|
|
|
|
SET(PYTHON_LIBRARY "")
|
|
|
|
SET(PYTHON_DEBUG_LIBRARY "")
|
|
|
|
ENDIF("${PYTHON_INCLUDE_PATH}" MATCHES "Python\\.framework")
|
|
|
|
IF(PYTHON_HAVE_FRAMEWORK)
|
|
|
|
IF(NOT PYTHON_LIBRARY)
|
|
|
|
SET (PYTHON_LIBRARY "-framework Python" CACHE FILEPATH "Python Framework" FORCE)
|
|
|
|
ENDIF(NOT PYTHON_LIBRARY)
|
|
|
|
IF(NOT PYTHON_DEBUG_LIBRARY)
|
|
|
|
SET (PYTHON_DEBUG_LIBRARY "-framework Python" CACHE FILEPATH "Python Framework" FORCE)
|
|
|
|
ENDIF(NOT PYTHON_DEBUG_LIBRARY)
|
|
|
|
ENDIF(PYTHON_HAVE_FRAMEWORK)
|
|
|
|
ENDIF (APPLE)
|