Changeset View
Changeset View
Standalone View
Standalone View
source/creator/CMakeLists.txt
| Show First 20 Lines • Show All 518 Lines • ▼ Show 20 Lines | if(WITH_PYTHON_INSTALL) | ||||
| if(${_pypath_real} MATCHES "lib64$") | if(${_pypath_real} MATCHES "lib64$") | ||||
| set(_target_LIB "lib64") | set(_target_LIB "lib64") | ||||
| else() | else() | ||||
| set(_target_LIB "lib") | set(_target_LIB "lib") | ||||
| endif() | endif() | ||||
| unset(_pypath_real) | unset(_pypath_real) | ||||
| # Copy the systems python into the install directory | # Copy the systems python into the install directory | ||||
| # Scons copy in tools/Blender.py | |||||
| # install(CODE "message(\"copying a subset of the systems python...\")") | # install(CODE "message(\"copying a subset of the systems python...\")") | ||||
| install( | install( | ||||
| DIRECTORY ${PYTHON_LIBPATH}/python${PYTHON_VERSION} | DIRECTORY ${PYTHON_LIBPATH}/python${PYTHON_VERSION} | ||||
| DESTINATION ${TARGETDIR_VER}/python/${_target_LIB} | DESTINATION ${TARGETDIR_VER}/python/${_target_LIB} | ||||
| PATTERN ".svn" EXCLUDE | PATTERN ".svn" EXCLUDE | ||||
| PATTERN "__pycache__" EXCLUDE # * any cache * | PATTERN "__pycache__" EXCLUDE # * any cache * | ||||
| PATTERN "distutils" EXCLUDE # ./distutils | PATTERN "distutils" EXCLUDE # ./distutils | ||||
| PATTERN "lib2to3" EXCLUDE # ./lib2to3 | PATTERN "lib2to3" EXCLUDE # ./lib2to3 | ||||
| ▲ Show 20 Lines • Show All 577 Lines • Show Last 20 Lines | |||||