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
2018-02-02Merge branch 'master' into blender2.8Campbell Barton
2018-02-01Fix T53951: Copy ms runtime dlls using InstallRequiredSystemLibraries.cmakeRay Molenkamp
Differential Revision: https://developer.blender.org/D3032
2018-01-28Merge branch 'blender2.8' into hair_guidesLukas Tönne
2018-01-28Merge branch 'master' into blender2.8Campbell Barton
2018-01-26make_quickie: replace os.system w/ subprocess.callCampbell Barton
2018-01-26project_info: replace os.system w/ subprocess.check_callCampbell Barton
2018-01-24Merge branch 'master' into blender2.8Campbell Barton
2018-01-24CMake: store icon namesCampbell Barton
Without this, adding/removing icons wouldn't force cmake to re-run making builds fail. This is the same issue with globbing source code.
2018-01-23Merge branch 'master' into blender2.8Campbell Barton
2018-01-23Cleanup: CMake whitespaceCampbell Barton
2018-01-21Merge branch 'blender2.8' into hair_guidesLukas Tönne
2018-01-13Merge branch 'master' into blender2.8Brecht Van Lommel
2018-01-12Build: auto detection of libraries built by "make deps" on Linux.Brecht Van Lommel
Use the libraries if they exist in ../lib/linux_x86_64 or similar, so that you can run "make deps && make full" to get a full static build. Note that install_deps.sh is still the only officially supported way to build Blender dependencies on Linux, but this may be useful to some. Differential Revision: https://developer.blender.org/D2980
2017-12-19Edit mode data functions for creating, applying a freeing groom edit data.Lukas Tönne
2017-12-11Merge branch 'master' into blender2.8Campbell Barton
2017-12-10MSVC: Fix compiling with some system languagesCampbell Barton
Report from @cyaoeu that compiling failed for Japanese system language.
2017-12-07Merge branch 'master' into blender2.8Campbell Barton
2017-12-07CMake: GREATER_EQUAL is from v3.7, use GREATERCampbell Barton
2017-12-06Merge branch 'master' into blender2.8Campbell Barton
2017-12-06CMake: remove git found messageCampbell Barton
2017-12-05Merge branch 'master' into blender2.8Antonio Vazquez
2017-12-05CMake: avoid checking each MSVC minor revisionCampbell Barton
2017-12-05Fix MSVS2017 compiler versionAntonioya
After last update to Visual Studio 2017 15.5.0 the compiler version changed
2017-11-30Merge branch 'master' into blender2.8Campbell Barton
2017-11-30Haiku OS SupportCampbell Barton
D2860 by @miqlas Even though Haiku is a niche OS, only minor changes are needed.
2017-11-19Merge branch 'master' into blender2.8Julian Eisel
2017-11-18CMake: remove solaris pathCampbell Barton
2017-11-13Merge remote-tracking branch 'origin/master' into blender2.8Dalai Felinto
2017-11-13Cycles: Fix compilation error with OIIO compiled against system PugiXMLSergey Sharybin
2017-11-07Merge branch 'master' into blender2.8Brecht Van Lommel
2017-11-07macOS: remove old OpenMP lib stuff from cmakeArto Kitula
2017-11-04Fix broken macOS build with libsndfile, name is different than in master.Brecht Van Lommel
2017-10-30CMake: cleanupCampbell Barton
2017-10-30CMake: cleanupCampbell Barton
2017-10-29Merge branch 'master' into blender2.8Germano
# Conflicts: # build_files/cmake/macros.cmake # build_files/cmake/platform/platform_win32.cmake
2017-10-29CMake: use only absolute linker paths for msvc.Ray Molenkamp
cmake's link_directories will supply forward slashes for the search paths, the msvc linker has some issues with that, while it will search for the needed libs just fine, the incremental linker gets fed forward slashes for some libs, while the previous binary has backward slashes in it's metadata, the linker assumes obj files got added and performs a full link instead of an incremental link. This change brings down the link time with newer msvc versions for a trivial edit down from a few minutes to a few seconds.
2017-10-25Merge branch 'master' into blender2.8Sergey Sharybin
2017-10-24Fix Cycles gtests build on macOS.Brecht Van Lommel
2017-10-04Merge branch 'master' into blender2.8Sergey Sharybin
2017-10-03CMake: avoid naming collisionCampbell Barton
2017-10-03Python: bump minimum version to 3.6Campbell Barton
2017-09-29Merge branch 'master' into blender2.8Campbell Barton
2017-09-29Drop platform support for Solaris & AIXCampbell Barton
These platforms didn't see maintenance in years. This commit just removes ifdef's & cmake check.
2017-09-28macOS: officially upgrade to 10.9 libraries from lib/darwin.Brecht Van Lommel
This removes a bunch of code that is no longer needed, and running "make update" will now automatically download the new libraries. Differential Revision: https://developer.blender.org/D2861
2017-09-28CMake: move MSVC warnings to central locationCampbell Barton
2017-09-27[msvc] treat C4133 as error instead of a warning to mimic gcc's ↵Ray Molenkamp
-Werror=incompatible-pointer-types as requested by @campbellbarton and @mano-wii
2017-09-25Merge branch 'master' into blender2.8Sergey Sharybin
2017-09-22Remove quicktime supportAaron Carlisle
It has been deprecated since at least macOS 10.9 and fully removed in 10.12. I am unsure if we should remove it only in 2.8. But you cannot build blender with it supported when using a modern xcode version anyway so I would tend towards just removing it also for 2.79 if that ever happens. Reviewers: mont29, dfelinto, juicyfruit, brecht Reviewed By: mont29, brecht Subscribers: Blendify, brecht Maniphest Tasks: T52807 Differential Revision: https://developer.blender.org/D2333
2017-09-22Merge branch 'master' into blender2.8Sergey Sharybin
2017-09-20[cmake/msvc] Update python to 3.6 + numpy to 1.13.1Ray Molenkamp