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
2017-04-27Cleanup: spellingCampbell Barton
2017-04-26OSX buildbot: remove redundant optionJens Verwiebe
2017-04-26OSX buildbot: disable unsupported calls for now and use quicktime off defaultJens Verwiebe
2017-04-25Fix OSX buildbotJens Verwiebe
2017-04-23CMake: move some Apple specific code into platform_apple_xcode.cmake.Brecht Van Lommel
2017-04-23CMake: disable WITH_CODEC_QUICKTIME for macOS > 10.11 for configurations.Romain Foyard
QtKit was removed in macOS Sierra, this patch disables WITH_CODEC_QUICKTIME in Sierra and greater versions of macOS. Reviewed By: brecht Differential Revision: https://developer.blender.org/D2645
2017-04-22OSX: satisfy macro to also apply alembic testsJens Verwiebe
2017-04-21[cmake] Fix Alembic build errors with msvclazydodo
2017-04-21CMake: Add option to build against system-wide GlogSergey Sharybin
Similar to previous commit for Gflags.
2017-04-21CMake: Add option to link against system-wide Gflags librarySergey Sharybin
It is disabled by default, so should not affect existing configurations. Main benefits of this goes as: - Linux distros can use that to avoid libraries duplication and link blender package against gflags package from the system. - It it easier to test whether Blender works with updated version of Gflags prior to re-bundling the library.
2017-04-18Fix install_deps.sh for new Ubuntu 17.04, which does not have libopenjpeg!Bastien Montagne
2017-04-14Buildbot: Fix typosSergey Sharybin
2017-04-14Buildbot: Attempt to fix CUDA compilation on OSXSergey Sharybin
Stupid toolkit is really fragile about CLang version.
2017-04-10Install deps: Fix compilation error of AlembicLuca Rood
Couple of things here: - Boost is not necesserily compiled into your /opt/lib and system-wide version might have been used. The recent change in Alembic did not take this into account. - Alembic needs some extra component of Boost. This part might be missing now for other distros than DEB.
2017-04-07Buildbot: List freetype for OIIO librariesSergey Sharybin
OIIO in release environment is compiled with Freetype support. This fixes compilation error of static unit tests.
2017-04-07Buildbot: Link statically against freetypeSergey Sharybin
2017-04-07CMake: Fix detection of idiff programSergey Sharybin
2017-04-07Tests: Fix compilation error with static OpenMPSergey Sharybin
2017-04-06CMake: Fixed order of bf_alembic in SETUP_BLENDER_SORTED_LIBSSybren A. Stüvel
bf_alembic depends on bf_bmesh, and should therefore be above it.
2017-04-06Buildbot: Correct previous releaseSergey Sharybin
Seems CMake is not happy about changing compiler from script.
2017-04-06Buildbot: Force build environment to use latest GCCSergey Sharybin
2017-04-05InstallDeps: Raise minimal & official version of OIIO to 1.7.13.Bastien Montagne
As requested by @sergey.
2017-04-04install_deps: removed leftover compile_HDF5 commandSybren A. Stüvel
It was a leftover from when Alembic with HDF5 was still officially supported.
2017-04-04Bumped Alembic library version to 1.7.1Sybren A. Stüvel
This provides us with a clearer API (so I don't have to use const_cast<> in upcoming code). It also allows layering of different Alembic files, so you can have a base file and load a separate file containing overrides. Verbally approved by Dr. Sergey.
2017-04-04Buildbot: Update master configSergey Sharybin
2017-04-04Alembic: force ALEMBIC_LIB_USES_BOOST=ON when not using C++11Sybren A. Stüvel
Alembic requires one of ALEMBIC_LIB_USES_BOOST, ALEMBIC_LIB_USES_TR1, or C++11, and silently defaults to the latter if the former two are OFF. Before this change, Alembic was only built without C++11 of OpenEXR was built at the same time. This dependency was both unnecessary and undocumented.
2017-04-04Buildbot: Update master configSergey Sharybin
2017-04-03Buildbot: Some more twqeaks to master configSergey Sharybin
2017-04-03Buildbot: Update bundled vetrsion of server configurationSergey Sharybin
2017-04-03Buildbot: SPecial branch trickery for linux slavesSergey Sharybin
2017-04-03Buildbot: Some special tricks for Blender 2.8 slaveSergey Sharybin
2017-03-29Buildbot: Revert previous change, older toolkit has same exact behaviorSergey Sharybin
2017-03-29Buildbot: Use older NVCC on 32bit linuxSergey Sharybin
Newer toolkit has some weird issue with cross0-compiling 32bit kernels from 64bit environment.
2017-03-29Buildbot: Remove global hardcoded NVCC pathSergey Sharybin
This was initially needed for heterogeneous setup of two toolkits which we no longer need.
2017-03-24Buildbot: Use proper NVCC pathSergey Sharybin
In fact, we could probably remove this option all together.
2017-03-22Fix T51024: Switch install_deps to set OSL_ROOT_DIR instead of CYCLES_OSL.Bastien Montagne
Path by @alekulyn, thanks. Differential Revision: https://developer.blender.org/D2571
2017-03-11Cleanup: code style & cmakeCampbell Barton
2017-02-28Cleanup: update copyright and Blender descriptionAaron Carlisle
2017-02-03Buildbot: Re-enable cuda support for OSXSergey Sharybin
2017-02-02install_deps.sh: don't use backticksSybren A. Stüvel
The script complained that it could not find the executable "--build-all".
2017-01-29[msvc] Set proper OpenSubdiv flags when not using find_package to find ↵lazydodo
opensubdiv. Fixes T50548
2017-01-25[Cycles/MSVC/Testing] Fix broken test code.lazydodo
Currently the tests don't run on windows for the following reasons 1) render_graph_finalize has an linking issue due missing a bunch of libraries (not sure why this is not an issue for linux) 2) This one is more interesting, in test/python/cmakelists.txt ${TEST_BLENDER_EXE_BARE} and ${TEST_BLENDER_EXE} are flat out wrong, but for some reason this doesn't matter for most tests, cause ctest will actually go out and look for the executable and fix the path for you *BUT* only for the command, if you use them in any of the parameters it'll happily pass on the wrong path. 3) on linux you can just run a .py file, windows is not as awesome and needs to be told to run it with pyton. 4) had to use the NAME/COMMAND long form of add_test otherwise $<TARGET_FILE:blender> doesn't get expanded, why? beats me. 5) missing idiff.exe for msvc2015/x64 in the libs folder. This patch addresses 1-4 , but given I have no working Linux build environment, I'm unsure if it'll break anything there 5 has been fixed in rBL61751 Reviewers: juicyfruit, brecht, sergey Reviewed By: sergey Subscribers: Blendify Tags: #cycles, #automated_testing Differential Revision: https://developer.blender.org/D2367
2017-01-24Install deps: Bump OpenSubdiv version to 3.1.1Sergey Sharybin
Required to have some crash fixes.
2016-12-07Fix install_deps.sh failing to build ffmpeg 3.Bastien Montagne
--disable-libfaac is no more ffmpeg build option.
2016-12-04Fix macOS 10.9 build when using OIIO without FFmpeg.Brecht Van Lommel
2016-12-04[msvc] Changes for new oiio/ffmpeg versions.lazydodo
2016-12-03CMake: update for macOS 10.9 libs with ffmpeg 3.2.1 and webp support.Brecht Van Lommel
2016-12-01install_deps.sh: Update official (default) lib versions of ↵Bastien Montagne
py/oiio/osl/osd/ffmpeg.
2016-12-01Buildbot: Disable glibc211 slavesSergey Sharybin
2016-11-29[msvc] remove /opt all together and revert to the default behavior /opt:ref ↵lazydodo
for release builds, /opt:noref for debug builds.