You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Detecting PythonLibs before PythonInterp can cause a non-default Python library to be picked up, which then won't match the PythonInterp version (which always matches the version of the `python3` command).
107 lines
4.4 KiB
CMake
107 lines
4.4 KiB
CMake
####################### CMakeLists.txt (libopenshot) #########################
|
|
# @brief CMake build file for libopenshot (used to generate Python SWIG bindings)
|
|
# @author Jonathan Thomas <jonathan@openshot.org>
|
|
#
|
|
# @section LICENSE
|
|
#
|
|
# Copyright (c) 2008-2019 OpenShot Studios, LLC
|
|
# <http://www.openshotstudios.com/>. This file is part of
|
|
# OpenShot Library (libopenshot), an open-source project dedicated to
|
|
# delivering high quality video editing and animation solutions to the
|
|
# world. For more information visit <http://www.openshot.org/>.
|
|
#
|
|
# OpenShot Library (libopenshot) is free software: you can redistribute it
|
|
# and/or modify it under the terms of the GNU Lesser General Public License
|
|
# as published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
|
|
############### SWIG PYTHON BINDINGS ################
|
|
FIND_PACKAGE(SWIG 3.0 REQUIRED)
|
|
INCLUDE(${SWIG_USE_FILE})
|
|
|
|
### Enable some legacy SWIG behaviors, in newer CMAKEs
|
|
if (POLICY CMP0078)
|
|
cmake_policy(SET CMP0078 OLD)
|
|
endif()
|
|
if (POLICY CMP0086)
|
|
cmake_policy(SET CMP0086 OLD)
|
|
endif()
|
|
|
|
FIND_PACKAGE(PythonInterp 3)
|
|
FIND_PACKAGE(PythonLibs 3)
|
|
if (PYTHONLIBS_FOUND AND PYTHONINTERP_FOUND)
|
|
|
|
### Include Python header files
|
|
INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH})
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
### Enable C++ support in SWIG
|
|
set_property(SOURCE openshot.i PROPERTY CPLUSPLUS ON)
|
|
set_property(SOURCE openshot.i PROPERTY SWIG_MODULE_NAME openshot)
|
|
|
|
### Suppress a ton of warnings in the generated SWIG C++ code
|
|
set(SWIG_CXX_FLAGS "-Wno-unused-variable -Wno-unused-function -Wno-deprecated-copy -Wno-class-memaccess -Wno-cast-function-type \
|
|
-Wno-unused-parameter -Wno-catch-value -Wno-sign-compare -Wno-ignored-qualifiers")
|
|
separate_arguments(sw_flags UNIX_COMMAND ${SWIG_CXX_FLAGS})
|
|
set_property(SOURCE openshot.i PROPERTY GENERATED_COMPILE_OPTIONS ${sw_flags})
|
|
|
|
### Take include dirs from target, automatically if possible
|
|
if (CMAKE_VERSION VERSION_GREATER 3.13)
|
|
set_property(SOURCE openshot.i PROPERTY USE_TARGET_INCLUDE_DIRECTORIES True)
|
|
else ()
|
|
set_property(SOURCE openshot.i PROPERTY INCLUDE_DIRECTORIES $<TARGET_PROPERTY:openshot,INCLUDE_DIRECTORIES>)
|
|
endif ()
|
|
|
|
### Add the SWIG interface file (which defines all the SWIG methods)
|
|
if (CMAKE_VERSION VERSION_LESS 3.8.0)
|
|
swig_add_module(pyopenshot python openshot.i)
|
|
else()
|
|
swig_add_library(pyopenshot LANGUAGE python SOURCES openshot.i)
|
|
endif()
|
|
|
|
### Set output name of target
|
|
set_target_properties(${SWIG_MODULE_pyopenshot_REAL_NAME} PROPERTIES
|
|
PREFIX "_" OUTPUT_NAME "openshot")
|
|
|
|
### Link the new python wrapper library with libopenshot
|
|
target_link_libraries(${SWIG_MODULE_pyopenshot_REAL_NAME}
|
|
PUBLIC ${PYTHON_LIBRARIES} openshot)
|
|
|
|
### Check if the following Debian-friendly python module path exists
|
|
SET(PYTHON_MODULE_PATH "${CMAKE_INSTALL_PREFIX}/lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/dist-packages")
|
|
if (NOT EXISTS ${PYTHON_MODULE_PATH})
|
|
|
|
### Calculate the python module path (using distutils)
|
|
execute_process ( COMMAND ${PYTHON_EXECUTABLE} -c "\
|
|
from distutils.sysconfig import get_python_lib; \
|
|
print( get_python_lib( plat_specific=True, prefix='${CMAKE_INSTALL_PREFIX}' ) )"
|
|
OUTPUT_VARIABLE _ABS_PYTHON_MODULE_PATH
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE )
|
|
|
|
GET_FILENAME_COMPONENT(_ABS_PYTHON_MODULE_PATH
|
|
"${_ABS_PYTHON_MODULE_PATH}" ABSOLUTE)
|
|
FILE(RELATIVE_PATH _REL_PYTHON_MODULE_PATH
|
|
${CMAKE_INSTALL_PREFIX} ${_ABS_PYTHON_MODULE_PATH})
|
|
SET(PYTHON_MODULE_PATH ${_ABS_PYTHON_MODULE_PATH})
|
|
endif()
|
|
message("PYTHON_MODULE_PATH: ${PYTHON_MODULE_PATH}")
|
|
|
|
############### INSTALL HEADERS & LIBRARY ################
|
|
### Install Python bindings
|
|
INSTALL(TARGETS ${SWIG_MODULE_pyopenshot_REAL_NAME}
|
|
LIBRARY DESTINATION ${PYTHON_MODULE_PATH} )
|
|
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/openshot.py
|
|
DESTINATION ${PYTHON_MODULE_PATH} )
|
|
|
|
endif ()
|