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-09-24Build: allow overriding DEPS_BUILD_DIR and DEPS_INSTALL_DIR for make deps.Brecht Van Lommel
2018-09-13Merge branch 'master' into blender2.8Campbell Barton
2018-09-13Cleanup: move 'make help_features' into own fileCampbell Barton
2018-09-13Merge branch 'master' into blender2.8Campbell Barton
2018-09-13PyDoc: disable ASAN exit code for doc buildingCampbell Barton
Prevented docs from building on any minor issue when ASAN was enabled.
2018-08-21Merge branch 'master' into blender2.8Campbell Barton
2018-08-21Correct recent makefile OSX checkCampbell Barton
2018-08-21Merge branch 'master' into blender2.8Campbell Barton
2018-08-21GNUmakefile: correct blender binary for macOSCampbell Barton
2018-08-14Cleanup: Update some links to new wikiAaron Carlisle
2018-08-14PyDoc: Remove hack to rename main doc from 'contents' to 'index'Aaron Carlisle
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Makefile: add note about environment varsCampbell Barton
2018-04-25Merge remote-tracking branch 'origin/master' into blender2.8Dalai Felinto
2018-04-25Fix string comparison in GNUMakefile for linux systemsDalai Felinto
2018-04-24Add "make icons_geom" convenience targetCampbell Barton
Generates icons from the blend file in lib.
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-09-29GNUmakefile: add back 'git pull'Campbell Barton
Seems this was removed by accident.
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-08-10Cleanup: de-duplicate makefile OS checksCampbell Barton
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
2017-06-27CMake: Only set CMAKE_BUILD_TYPE_INIT when not setCampbell Barton
Convenience makefile now uses CMAKE_BUILD_TYPE_INIT, this means you can change the build type of an existing build and it won't be overwritten when running `make`. Useful if you want to add debug info to a release build for profiling.
2017-03-11Makefile: set tab width=4Campbell Barton
2016-07-14Cleanup: line lengthCampbell Barton
2016-05-20Makefile: Use hidden FORCE targetCampbell Barton
2016-04-09Fix T48078: incorrect OS X command for retrieving number of CPUs on in Makefile.Brecht Van Lommel
2016-01-04Minor edits to sync make.bat & makefileCampbell Barton
2015-09-21Makefile: show build dir when configuringCampbell Barton
2015-06-17CMake: use functions instead of macrosCampbell Barton
Reduces issues with vars leaking into the parent scope.
2015-06-14CMake: note env varCampbell Barton
2015-06-14Makefile support for using NPROCS as an env varCampbell Barton
2015-06-10Support alternate python commandCampbell Barton
2015-03-23tweaks to packman buildCampbell Barton
remove --asroot arg to makepkg
2015-03-21Cleanup: use tabsCampbell Barton
2014-12-20Force phony targets to build (even if file exists)Campbell Barton
This is a convenience makefile only, files if they exist by accident shouldn't ever be used.
2014-11-14CMake: add 'full' to 'make help'Campbell Barton
2014-11-13Add 'help_features' make target (prints WITH_*** options)Campbell Barton
2014-11-13CMake: add 'make full' targetCampbell Barton
2014-09-16Utility script to create release archiveCampbell Barton
- only include files known to git. - includes all submodules. - version extracted from BKE_blender.h for naming. - MD5 checksum generated. - 'make tbz' convenience target. Script by Dan McGrath with own minor edits.
2014-09-15Makefile: add 'update' convenience targetCampbell Barton
2014-07-25Source Checkers: Include intern/ libs we maintain in spelling checksCampbell Barton
2014-06-18Move tests into tests/ top-level dirCampbell Barton
2014-05-29OSX: fix T40413, automatic threads for compile throw wrong outputJens Verwiebe
2014-05-27BSD's was using too many build threads for convenience makefileCampbell Barton
D431 from Aaron Peterson
2014-03-02Found another place where nproc can be usedLawrence D'Oliveiro
/proc/cpuinfo is a Linux-specific thing. Using GNU [[ http://www.gnu.org/software/coreutils/manual/html_node/nproc-invocation.html | nproc ]] should be more portable. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D377
2014-01-20Cycles: Add a cmake config to easily compile Cycles Standalone.Thomas Dinges
On Linux/Mac OS X, simply type "make cycles" inside the Blender source directory, to get a standalone build of the engine. Reviewed by: Brecht Differential Revision: https://developer.blender.org/D228
2014-01-13UI Icons: store icons in git as uncompressed pixmaps (D196)Campbell Barton
this allows for updating icons without committing a new PNG each time (which is inefficient with git). The data files are converted into a PNG at builds time and used just as they were before.
2014-01-06Code Cleanup: osl styleCampbell Barton
2013-11-17Convenience Makefile: spaces in the build path would fail still.Campbell Barton
2013-11-17convenience makefile: support spaces in pathsCampbell Barton
also update for new source/tools paths.