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
2019-06-02macOS: increase minimum required version to 10.11Brecht Van Lommel
This is in preparation of an the upcoming fix where we need to use a Metal layer to avoid performance issue when drawing with OpenGL. Note that we already only officially support 10.12+, the difference with this change is that Blender will not start at all on 10.9 and 10.10.
2019-04-17Cleanup: use 2 space indentation for CMakeCampbell Barton
2019-03-01build_environment: Fixed `make deps` on macOSStefan Werner
Two changes: Removed the explicit version for the macOS SDK, recent versions of Xcode have a symlink to the newest SDK. Fixed the build script for OpenMP by removing extra ' marks that install_name_tool took literally and replaced INSTALL_PATH with INSTALL_DIR.
2018-11-07Cycles: Added Embree as BVH option for CPU renders.Stefan Werner
Note that this is turned off by default and must be enabled at build time with the CMake WITH_CYCLES_EMBREE flag. Embree must be built as a static library with ray masking turned on, the `make deps` scripts have been updated accordingly. There, Embree is off by default too and must be enabled with the WITH_EMBREE flag. Using Embree allows for much faster rendering of deformation motion blur while reducing the memory footprint. TODO: GPU implementation, deduplication of data, leveraging more of Embrees features (e.g. tessellation cache). Differential Revision: https://developer.blender.org/D3682
2018-09-17build_environment: force a consistent libdir across Linux distributions.Ray Molenkamp
on some distributions libs ended up in lib64 confusing the cmake builder.
2018-08-27Build environment: Fix for C placement independent codeSergey Sharybin
Need to pass -fPIC to C code as well. Without this blosc is not being properly placement independent.
2018-08-26Cleanup: trailing spaceCampbell Barton
2018-08-26build_environment: fix build-flags on windows.Ray Molenkamp
build all object files with /bigobj since multiple of the dependencies go over the limit on x86
2018-08-13build_environment: openexr support debug build.Ray Molenkamp
2018-08-10libs: boost 1.68Arto Kitula
2018-06-10Cleanup: trailing space in CMake filesCampbell Barton
2018-06-02build_environment: support for msvc2017 and newer cmake.Ray Molenkamp
-expanded build_deps.cmd with 2017 support, it can't locate msvc2017 so needs to be run from developer prompt. -Newer cmake was unhappy with openal's cmakelists.txt -collada has warning as error on and errored out on new msvc2017 warnings.
2017-11-05Cleanup: indentation, line wrappingCampbell Barton
2017-09-22[cmake/deps_builder] update openjpeg to 1.5.2 to match the version in ↵Ray Molenkamp
master/extern , add support for openjpeg in oiio. Mark webp as an optional component.
2017-09-21build deps: add support for multiple xcode installsArto Kitula
2017-09-03[deps/msvc] Debug flags for optimized debug libs were inverted for cxx.Ray Molenkamp
2017-08-15[deps_build/macOS] Fix FFMPEG & VPX configure commandArto Kitula
FFMPEG & VPX don't handle target with --build parameter, so we need to make sure use of plain configure command Reviewed by: Brecht Van Lommel Differential Revision: http://developer.blender.org/D2791
2017-08-13[build_deps/Windows] Prevent writing of any files into the source tree.Ray Molenkamp
2017-08-07Build: add scripts to build dependencies for Windows and macOS.Brecht Van Lommel
Note these are intended for platform maintainers, we do not intend to support users making their own builds with these. For that precompiled libraries from lib/ should be used. Implemented by Martijn Berger, Ray Molenkamp and Brecht Van Lommel. Differential Revision: https://developer.blender.org/D2753