Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-12-04 21:54:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-04 21:54:32 +0400
commit77fdf426d60e7461cbb6450d712ed6bf8e7fba09 (patch)
treea82fcefd2f4ac47fc9a2a8b0f919e436d8421621 /CMakeLists.txt
parent677c712b58d6a6aefe2dc13389558b5556ad9145 (diff)
disable numpy warning with cmake, since we didnt end up bundling this with blender yet.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0954d5ce878..1b642bb24c6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1932,12 +1932,13 @@ if(WITH_PYTHON)
if(WITH_PYTHON_INSTALL AND WITH_PYTHON_INSTALL_NUMPY)
# set but invalid
+ # -- disabled until we make numpy bundled with blender - campbell
if(NOT ${PYTHON_NUMPY_PATH} STREQUAL "")
- if(NOT EXISTS "${PYTHON_NUMPY_PATH}/numpy")
- message(WARNING "PYTHON_NUMPY_PATH is invalid, numpy not found in '${PYTHON_NUMPY_PATH}' "
- "WITH_PYTHON_INSTALL_NUMPY option will be ignored when installing python")
- set(WITH_PYTHON_INSTALL_NUMPY OFF)
- endif()
+# if(NOT EXISTS "${PYTHON_NUMPY_PATH}/numpy")
+# message(WARNING "PYTHON_NUMPY_PATH is invalid, numpy not found in '${PYTHON_NUMPY_PATH}' "
+# "WITH_PYTHON_INSTALL_NUMPY option will be ignored when installing python")
+# set(WITH_PYTHON_INSTALL_NUMPY OFF)
+# endif()
# not set, so initialize
else()
string(REPLACE "." ";" _PY_VER_SPLIT "${PYTHON_VERSION}")