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
AgeCommit message (Collapse)Author
2021-02-11CMake: update python to 3.9.1Campbell Barton
Default to Python version 3.9. Reviewed By: LazyDodo, sybren, sebbas Ref D10380
2020-08-12CMake: clarify that the modules are licensed BSD 3-ClauseBrecht Van Lommel
Many of these are derived from similar modules in the CMake project, which have this license. Fixes T79715
2020-02-05CMake: remove non-standard package search pathsCampbell Barton
Reduce the number of possible locations used to find libraries, to simplify troubleshooting. Only keep '*_ROOT_DIR' and the path used by 'install_deps.sh'.
2019-10-28CMake: add missing headers, use space before commentsCampbell Barton
2018-09-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3700
2018-09-17build_files: bump python version in FindPythonLibsUnix.cmake to 3.7 now that ↵Ray Molenkamp
all platforms have been updated
2018-06-10Cleanup: trailing space in CMake filesCampbell Barton
2017-10-03CMake: avoid naming collisionCampbell Barton
2017-10-03Python: bump minimum version to 3.6Campbell Barton
2015-11-27missed last commitCampbell Barton
2015-11-27CMake/SCons: set Python to 3.5Campbell Barton
2015-05-19CMake: install Python executable when its bundledCampbell Barton
2015-03-24Fix for building blender as a Python moduleCampbell Barton
Installation didn't work on debian distro's now install into PYTHON_SITE_PACKAGES (which is detected and can be configured).
2014-07-04Fix the ABIFLAGS order for detecting Python debug buildsCampbell Barton
D631 by mva
2014-04-30Python: move to version 3.4x on all platformsCampbell Barton
2013-08-28cmake: set python, llvm and osl libs as advanced.Campbell Barton
2013-07-10remove reference to wrong python version in comments & pedantic style edit.Campbell Barton
2012-11-12Initial implementation of a script for automatic dependencies installer/builderSergey Sharybin
This script will install all packages from the repositories and will compile missing in repositories libraries. It is supposed to replace pre-compiled libraries from our svn. Tested script on Fedora 14 and 17, Ubuntu 10.04 and 12.10. All the dependencies and manually built libraries seems to be fine. However, it's really annoying to build blender in virtual machine to ensure there's no linking errors, i would hope community will help testing and making needed tweaks to the script :) To use the script, simple run it from your user name. It'll run installation commands from a sudo, so you would likely be requested to type a password. I've made tweaks to CMake FindLibs, so it should find OIIO, OCIO and python libraries compiled by this script. Boost and FFmpeg would need to be specified manually. SCons currently would require manual paths specifications as well. Perhaps we could make SCons smarter in the future. All the parameters you need to pass to CMake/SCons would be printed when script finishes to run. Pretty much sure it's not production-ready script, but we need to start testing at some point :)
2012-11-10Another fix for finding python stuff... Should work for everyone now! (I ↵Bastien Montagne
hope...).
2012-11-07Use CMAKE_LIBRARY_ARCHITECTURE instead of hardcoded stuff like ↵Bastien Montagne
x86_64-linux-gnu! Now should work with any multiarch!
2012-11-07Attempt to fix problems with local built py caused by own r51976.Bastien Montagne
2012-11-07Update to make it work with new debian-like py3.3 packages. A bit hackish ↵Bastien Montagne
(this arch-dependent stuff makes things a bit complex), and probably only working for amd64 arch, but at least should not create any regression...
2012-11-05default to Python3.3 on Linux for SCons and CMake, warn when building with ↵Campbell Barton
python 3.2x or older. also remove casts to keep Python3.2 warning quiet.
2011-11-16minor cleanupCampbell Barton
- remove / comment unused python vars - replace mul_v3_fl(somevec, -1.0f); with negate_v3(somevec);
2011-11-03cmake could ignore defines for python lib/include passed from the command ↵Campbell Barton
line if both weren't defined.
2011-10-01cmake:Campbell Barton
- fix for cmake's SSE detection which would fail because of strict warnings and also had redundant cache setting. - was incorrectly initializing variables (own bad) - python was searching for libs on every run, now only do this if there not cached.
2011-06-20fix for python ABI search, was missing 'd'Campbell Barton
2011-06-20- add example for python rna property updateCampbell Barton
- edit the copyright for blender specific cmake find modules
2011-06-19cmake: fix for recent break in msvc+collada, also dont cache duplicate ↵Campbell Barton
python include/library variables.
2011-06-19add back PYTHON_LIBPATH, needed for installing on pythonCampbell Barton
2011-06-19cmake add module for finding fftw3.Campbell Barton
also allow debug blender to build with non debug python
2011-06-19cmake: added FindOpenJPEG module.Campbell Barton
2011-06-19cmake:Campbell Barton
new macro file_list_suffix() for adding a suffix to every file in a path before the file extension. useful to create names for debug libs on windows.
2011-06-18cmake: make python search into a find package module.Campbell Barton