1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#
# Based on http://numexpr.googlecode.com/hg/FindSciPy.cmake
#
# - Find the SciPy libraries
# This module finds if SciPy is installed, and sets the following variables
# indicating where it is.
#
# TODO: Update to provide the libraries and paths for linking npymath lib.
#
# SCIPY_FOUND - was SciPy found
# SCIPY_VERSION - the version of SciPy found as a string
# SCIPY_VERSION_MAJOR - the major version number of SciPy
# SCIPY_VERSION_MINOR - the minor version number of SciPy
# SCIPY_VERSION_PATCH - the patch version number of SciPy
# SCIPY_VERSION_DECIMAL - e.g. version 1.6.1 is 10601
# SCIPY_INCLUDE_DIRS - path to the SciPy include files
#============================================================================
# Copyright 2012 Continuum Analytics, Inc.
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
#============================================================================
# Finding SciPy involves calling the Python interpreter
if(SCIPY_FIND_REQUIRED)
find_package(PythonInterp REQUIRED)
else()
find_package(PythonInterp)
endif()
if(PYTHONINTERP_FOUND)
execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c"
"import scipy as n; print(n.__version__); print(n.get_include());"
RESULT_VARIABLE _SCIPY_SEARCH_SUCCESS
OUTPUT_VARIABLE _SCIPY_VALUES
ERROR_VARIABLE _SCIPY_ERROR_VALUE
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(_SCIPY_SEARCH_SUCCESS MATCHES 0)
set(SCIPY_FOUND TRUE)
# Convert the process output into a list
string(REGEX REPLACE ";" "\\\\;" _SCIPY_VALUES ${_SCIPY_VALUES})
string(REGEX REPLACE "\n" ";" _SCIPY_VALUES ${_SCIPY_VALUES})
list(GET _SCIPY_VALUES 0 SCIPY_VERSION)
list(GET _SCIPY_VALUES 1 SCIPY_INCLUDE_DIRS)
# Make sure all directory separators are '/'
string(REGEX REPLACE "\\\\" "/" SCIPY_INCLUDE_DIRS ${SCIPY_INCLUDE_DIRS})
# Get the major and minor version numbers
string(REGEX REPLACE "\\." ";" _SCIPY_VERSION_LIST ${SCIPY_VERSION})
list(GET _SCIPY_VERSION_LIST 0 SCIPY_VERSION_MAJOR)
list(GET _SCIPY_VERSION_LIST 1 SCIPY_VERSION_MINOR)
list(GET _SCIPY_VERSION_LIST 2 SCIPY_VERSION_PATCH)
math(EXPR SCIPY_VERSION_DECIMAL
"(${SCIPY_VERSION_MAJOR} * 10000) + (${SCIPY_VERSION_MINOR} * 100) + ${SCIPY_VERSION_PATCH}")
find_package_message(SciPy
"Found SciPy: version \"${SCIPY_VERSION}\" ${SCIPY_INCLUDE_DIRS}"
"${SCIPY_INCLUDE_DIRS}${SCIPY_VERSION}")
else()
if(SCIPY_FIND_REQUIRED)
message(FATAL_ERROR
"SciPy import failure:\n${_SCIPY_ERROR_VALUE}")
endif()
set(SCIPY_FOUND FALSE)
endif()
else()
set(SCIPY_FOUND FALSE)
endif()
|