-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from Ultimaker/CURA-7924_sip_cmake_build
Cura 7924 sip cmake build
- Loading branch information
Showing
11 changed files
with
346 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from sipbuild import SetuptoolsBuilder | ||
|
||
|
||
class CMakeBuilder(SetuptoolsBuilder): | ||
def __init__(self, project, **kwargs): | ||
print("Using the CMake builder") | ||
super().__init__(project, **kwargs) | ||
|
||
def build(self): | ||
""" Only Generate the source files """ | ||
print("Generating the source files") | ||
self._generate_bindings() | ||
self._generate_scripts() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,65 @@ | ||
#Find SIP | ||
#~~~~~~~~ | ||
# Find SIP | ||
# ~~~~~~~~ | ||
# | ||
#SIP website: http://www.riverbankcomputing.co.uk/sip/index.php | ||
# SIP website: http://www.riverbankcomputing.co.uk/sip/index.php | ||
# | ||
#Find the installed version of SIP. FindSIP should be called after Python has | ||
#been found. | ||
# Find the installed version of SIP. FindSIP should be called after Python | ||
# has been found. | ||
# | ||
#This file defines the following variables: | ||
# This file defines the following variables: | ||
# | ||
#SIP_VERSION - SIP version. | ||
#SIP_EXECUTABLE - Path to the SIP executable. | ||
#SIP_INCLUDE_DIRS - The SIP include directories. | ||
# SIP_VERSION - The version of SIP found expressed as a 6 digit hex number | ||
# suitable for comparison as a string. | ||
# | ||
#Copyright (c) 2007, Simon Edwards <simon@simonzone.com> | ||
#Redistribution and use is allowed according to the terms of the BSD license. | ||
#For details see the accompanying COPYING-CMAKE-SCRIPTS file. | ||
|
||
if(APPLE) | ||
#Workaround for broken FindPythonLibs. It will always find Python 2.7 libs on OSX. | ||
set(CMAKE_FIND_FRAMEWORK LAST) | ||
endif() | ||
|
||
#FIXME: Use the new FindPython3 module rather than these. New in CMake 3.12. | ||
#However currently that breaks on our CI server, since the CI server finds the built-in Python3.6 and then doesn't find the headers. | ||
find_package(PythonInterp 3.5 REQUIRED) | ||
find_package(PythonLibs 3.5 REQUIRED) | ||
|
||
#Define variables that are available in FindPython3, so there's no need to branch off in the later part. | ||
set(Python3_EXECUTABLE ${PYTHON_EXECUTABLE}) | ||
set(Python3_INCLUDE_DIRS ${PYTHON_INCLUDE_DIRS}) | ||
set(Python3_LIBRARIES ${PYTHON_LIBRARIES}) | ||
|
||
execute_process( | ||
COMMAND ${Python3_EXECUTABLE} -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific = False, standard_lib = False))" | ||
RESULT_VARIABLE _process_status | ||
OUTPUT_VARIABLE _process_output | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
if(${_process_status} EQUAL 0) | ||
string(STRIP ${_process_output} Python3_SITELIB) | ||
else() | ||
message(FATAL_ERROR "Failed to get Python3_SITELIB. Error: ${_process_output}") | ||
endif() | ||
# SIP_VERSION_STR - The version of SIP found as a human readable string. | ||
# | ||
# SIP_BINARY_PATH - Path and filename of the SIP command line executable. | ||
# | ||
# SIP_INCLUDE_DIR - Directory holding the SIP C++ header file. | ||
# | ||
# SIP_DEFAULT_SIP_DIR - Default directory where .sip files should be installed | ||
# into. | ||
|
||
execute_process( | ||
COMMAND ${Python3_EXECUTABLE} -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific = True, standard_lib = False))" | ||
RESULT_VARIABLE _process_status | ||
OUTPUT_VARIABLE _process_output | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
if(${_process_status} EQUAL 0) | ||
string(STRIP ${_process_output} Python3_SITEARCH) | ||
else() | ||
message(FATAL_ERROR "Failed to get Python3_SITEARCH. Error: ${_process_output}") | ||
endif() | ||
# Copyright (c) 2007, Simon Edwards <simon@simonzone.com> | ||
# Redistribution and use is allowed according to the terms of the BSD license. | ||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file. | ||
|
||
get_filename_component(_python_binary_path ${Python3_EXECUTABLE} DIRECTORY) | ||
|
||
find_program(SIP_EXECUTABLE sip | ||
HINTS ${CMAKE_PREFIX_PATH}/bin ${CMAKE_INSTALL_PATH}/bin ${_python_binary_path} ${Python3_SITELIB}/PyQt5 | ||
) | ||
|
||
find_path(SIP_INCLUDE_DIRS sip.h | ||
HINTS ${CMAKE_PREFIX_PATH}/include ${CMAKE_INSTALL_PATH}/include ${Python3_INCLUDE_DIRS} ${Python3_SITELIB}/PyQt5 | ||
) | ||
IF(SIP_VERSION) | ||
# Already in cache, be silent | ||
SET(SIP_FOUND TRUE) | ||
ELSE(SIP_VERSION) | ||
|
||
execute_process( | ||
COMMAND ${Python3_EXECUTABLE} -c "import sip; print(sip.SIP_VERSION_STR)" | ||
RESULT_VARIABLE _process_status | ||
OUTPUT_VARIABLE _process_output | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
FIND_FILE(_find_sip_py FindSIP.py PATHS ${CMAKE_MODULE_PATH} NO_CMAKE_FIND_ROOT_PATH) | ||
|
||
if(${_process_status} EQUAL 0) | ||
string(STRIP ${_process_output} SIP_VERSION) | ||
endif() | ||
EXECUTE_PROCESS(COMMAND ${Python_EXECUTABLE} ${_find_sip_py} OUTPUT_VARIABLE sip_config) | ||
IF(sip_config) | ||
STRING(REGEX REPLACE "^sip_version:([^\n]+).*$" "\\1" SIP_VERSION ${sip_config}) | ||
STRING(REGEX REPLACE ".*\nsip_version_num:([^\n]+).*$" "\\1" SIP_VERSION_NUM ${sip_config}) | ||
STRING(REGEX REPLACE ".*\nsip_version_str:([^\n]+).*$" "\\1" SIP_VERSION_STR ${sip_config}) | ||
STRING(REGEX REPLACE ".*\ndefault_sip_dir:([^\n]+).*$" "\\1" SIP_DEFAULT_SIP_DIR ${sip_config}) | ||
IF(${SIP_VERSION_STR} VERSION_LESS 5) | ||
STRING(REGEX REPLACE ".*\nsip_bin:([^\n]+).*$" "\\1" SIP_BINARY_PATH ${sip_config}) | ||
STRING(REGEX REPLACE ".*\nsip_inc_dir:([^\n]+).*$" "\\1" SIP_INCLUDE_DIR ${sip_config}) | ||
STRING(REGEX REPLACE ".*\nsip_module_dir:([^\n]+).*$" "\\1" SIP_MODULE_DIR ${sip_config}) | ||
ELSE(${SIP_VERSION_STR} VERSION_LESS 5) | ||
FIND_PROGRAM(SIP_BUILD_EXECUTABLE sip-build) | ||
ENDIF(${SIP_VERSION_STR} VERSION_LESS 5) | ||
SET(SIP_FOUND TRUE) | ||
ENDIF(sip_config) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(SIP REQUIRED_VARS SIP_EXECUTABLE SIP_INCLUDE_DIRS VERSION_VAR SIP_VERSION) | ||
IF(SIP_FOUND) | ||
IF(NOT SIP_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found SIP version: ${SIP_VERSION_STR}") | ||
ENDIF(NOT SIP_FIND_QUIETLY) | ||
ELSE(SIP_FOUND) | ||
IF(SIP_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find SIP") | ||
ENDIF(SIP_FIND_REQUIRED) | ||
ENDIF(SIP_FOUND) | ||
|
||
if(SIP_FOUND) | ||
include(${CMAKE_CURRENT_LIST_DIR}/SIPMacros.cmake) | ||
endif() | ||
ENDIF(SIP_VERSION) | ||
|
||
mark_as_advanced(SIP_EXECUTABLE SIP_INCLUDE_DIRS SIP_VERSION) | ||
include(${CMAKE_SOURCE_DIR}/cmake/SIPMacros.cmake) | ||
ADD_DEFINITIONS(-DSIP_VERSION=0x${SIP_VERSION}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (c) 2007, Simon Edwards <simon@simonzone.com> | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# * Neither the name of the Simon Edwards <simon@simonzone.com> nor the | ||
# names of its contributors may be used to endorse or promote products | ||
# derived from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY Simon Edwards <simon@simonzone.com> ''AS IS'' AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL Simon Edwards <simon@simonzone.com> BE LIABLE FOR ANY | ||
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
# FindSIP.py | ||
# Copyright (c) 2007, Simon Edwards <simon@simonzone.com> | ||
# Redistribution and use is allowed according to the terms of the BSD license. | ||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file. | ||
|
||
try: | ||
import sipbuild | ||
|
||
print("sip_version:%06.0x" % sipbuild.version.SIP_VERSION) | ||
print("sip_version_num:%d" % sipbuild.version.SIP_VERSION) | ||
print("sip_version_str:%s" % sipbuild.version.SIP_VERSION_STR) | ||
|
||
from distutils.sysconfig import get_python_lib | ||
python_modules_dir = get_python_lib(plat_specific=1) | ||
print("default_sip_dir:%s" % python_modules_dir) | ||
except ImportError: # Code for SIP v4 | ||
import sipconfig | ||
|
||
sipcfg = sipconfig.Configuration() | ||
print("sip_version:%06.0x" % sipcfg.sip_version) | ||
print("sip_version_num:%d" % sipcfg.sip_version) | ||
print("sip_version_str:%s" % sipcfg.sip_version_str) | ||
print("sip_bin:%s" % sipcfg.sip_bin) | ||
print("default_sip_dir:%s" % sipcfg.default_sip_dir) | ||
print("sip_inc_dir:%s" % sipcfg.sip_inc_dir) | ||
# SIP 4.19.10+ has new sipcfg.sip_module_dir | ||
if hasattr(sipcfg, "sip_module_dir"): | ||
print("sip_module_dir:%s" % sipcfg.sip_module_dir) | ||
else: | ||
print("sip_module_dir:%s" % sipcfg.sip_mod_dir) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.