This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/CMakeLists.txt

60 lines
2.0 KiB
CMake
Raw Normal View History

2015-10-20 08:05:00 +01:00
#CHECK: PythonLibs
2014-12-14 12:05:43 +00:00
set (PYTHON_SOURCES
python.c)
2015-08-07 22:57:53 +01:00
#try to use Brew first
#set ( PYTHON_LIBRARY /Anaconda/lib/libpython2.7.dylib )
#set ( PYTHON_INCLUDE_DIR /Anaconda/include/python2.7 )
2015-10-20 08:05:00 +01:00
#set( PYTHON_LIBRARY /usr/local/opt/python/Frameworks/Python.framework/Versions/Current/lib/libpython2.7.dylib) # - path to the python library
#set( PYTHON_INCLUDE_DIR /usr/local/opt/python/Frameworks/Python.framework/Versions/Current/include/python2.7 ) # - path to where Python.h is found
2015-08-07 22:57:53 +01:00
2015-02-03 02:37:25 +00:00
if (PYTHONLIBS_FOUND) # PYTHONLIBS_FOUND - have the Python libs been found
# PYTHON_LIBRARIES - path to the python library
# PYTHON_INCLUDE_PATH - path to where Python.h is found (deprecated)
# PYTHON_INCLUDE_DIRS - path to where Python.h is found
# PYTHON_DEBUG_LIBRARIES - path to the debug library (deprecated)
# PYTHONLIBS_VERSION_STRING - version of the Python libs found (since CMake 2.8.8)
#
#
#
# The Python_ADDITIONAL_VERSIONS variable can be used to specify a list
# of version numbers that should be taken into account when searching
# for Python. You need to set this variable before calling
# find_package(PythonLibs).
#
# If you'd like to specify the installation of Python to use, you should
# modify the following cache variables:
#
# ::
#
# PYTHON_LIBRARY - path to the python library
# PYTHON_INCLUDE_DIR - path to where Python.h is found
#
# If also calling find_package(PythonInterp), call find_package(PythonInterp)
# first to get the currently active Python version by default with a consistent
# version of PYTHON_LIBRARIES.
2015-02-03 02:37:25 +00:00
2015-06-19 01:22:12 +01:00
add_library (libpython SHARED ${PYTHON_SOURCES})
2014-12-14 12:05:43 +00:00
2015-06-19 01:22:12 +01:00
target_link_libraries(libpython libYap ${PYTHON_LIBRARIES})
2016-04-12 16:22:53 +01:00
2014-12-14 12:05:43 +00:00
2015-06-19 01:22:12 +01:00
set_target_properties (libpython PROPERTIES PREFIX "")
2014-12-14 12:05:43 +00:00
include_directories (${PYTHON_INCLUDE_DIRS})
2015-02-03 02:37:25 +00:00
2015-06-19 01:22:12 +01:00
install(TARGETS libpython
2014-12-14 12:05:43 +00:00
LIBRARY DESTINATION ${dlls}
2016-01-20 22:25:25 +00:00
ARCHIVE DESTINATION ${dlls}
)
2014-12-14 12:05:43 +00:00
install(FILES python.pl
DESTINATION ${libpl}
)
2015-02-03 02:37:25 +00:00
endif (PYTHONLIBS_FOUND)