2017-07-25 16:37:55 +02:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
|
|
|
if(MSVC)
|
2019-08-13 17:02:19 -06:00
|
|
|
message("BIN >${PYTHON_BINARY}<")
|
2017-07-25 16:37:55 +02:00
|
|
|
if(BUILD_MODE STREQUAL Debug)
|
|
|
|
set(NUMPY_DIR_POSTFIX -pydebug)
|
|
|
|
set(NUMPY_ARCHIVE_POSTFIX d)
|
|
|
|
set(NUMPY_BUILD_OPTION --debug)
|
|
|
|
else()
|
|
|
|
set(NUMPY_DIR_POSTFIX)
|
|
|
|
set(NUMPY_ARCHIVE_POSTFIX)
|
|
|
|
set(NUMPY_BUILD_OPTION)
|
2017-11-05 14:50:15 +11:00
|
|
|
endif()
|
2017-07-25 16:37:55 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(NUMPY_POSTFIX)
|
|
|
|
|
|
|
|
ExternalProject_Add(external_numpy
|
2021-03-16 14:10:30 +01:00
|
|
|
URL file://${PACKAGE_DIR}/${NUMPY_FILE}
|
2017-07-25 16:37:55 +02:00
|
|
|
DOWNLOAD_DIR ${DOWNLOAD_DIR}
|
2021-03-16 14:10:30 +01:00
|
|
|
URL_HASH ${NUMPY_HASH_TYPE}=${NUMPY_HASH}
|
2017-07-25 16:37:55 +02:00
|
|
|
PREFIX ${BUILD_DIR}/numpy
|
2017-09-20 12:29:50 -06:00
|
|
|
PATCH_COMMAND ${NUMPY_PATCH}
|
2017-07-25 16:37:55 +02:00
|
|
|
CONFIGURE_COMMAND ""
|
2020-07-16 09:25:55 +02:00
|
|
|
PATCH_COMMAND COMMAND ${PATCH_CMD} -p 1 -d ${BUILD_DIR}/numpy/src/external_numpy < ${PATCH_DIR}/numpy.diff
|
2017-07-25 16:37:55 +02:00
|
|
|
LOG_BUILD 1
|
2017-09-20 00:04:23 +03:00
|
|
|
BUILD_COMMAND ${PYTHON_BINARY} ${BUILD_DIR}/numpy/src/external_numpy/setup.py build ${NUMPY_BUILD_OPTION} install --old-and-unmanageable
|
2019-08-13 17:02:19 -06:00
|
|
|
INSTALL_COMMAND ""
|
2017-07-25 16:37:55 +02:00
|
|
|
)
|
|
|
|
|
2017-11-05 14:50:15 +11:00
|
|
|
add_dependencies(
|
|
|
|
external_numpy
|
2019-08-13 17:02:19 -06:00
|
|
|
external_python
|
2021-02-10 09:24:47 +11:00
|
|
|
external_python_site_packages
|
2017-11-05 14:50:15 +11:00
|
|
|
)
|