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>2014-03-04 17:20:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-04 17:22:51 +0400
commitc436c78de1d2f6fcac46e69c5c81ca2af5f839e5 (patch)
tree2933432fa57db2852b601c47f0f0f187b4474191 /CMakeLists.txt
parent6ebbcbd5df45c9a5953a3f6d3c068310fea58d7a (diff)
Build system support for numpy on ms-windows
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3e7ac95f985..46690f3a5b7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2209,7 +2209,9 @@ if(WITH_PYTHON)
"Python.h for python version \"${PYTHON_VERSION}\"")
endif()
- if(WITH_PYTHON_INSTALL AND WITH_PYTHON_INSTALL_NUMPY)
+ if(WIN32)
+ # pass, we have this in an archive to extract
+ elseif(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 "") AND (NOT ${PYTHON_NUMPY_PATH} MATCHES NOTFOUND))