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
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.
2013-11-15support for paths with spaces in makefileCampbell Barton
2013-09-30lots of operator descriptions were incorrectly copy/pasted.Campbell Barton
update some descriptions, others were removed and operators tagged as internal. add a script to detect duplicate operator descriptions.
2013-08-27add icons utility make target.Campbell Barton
2013-05-14Fix a mismatch in help message (check_spelling_osl obviously checks OLS, and ↵Bastien Montagne
check_spelling_c, C code! :P )
2013-04-01correct too-big allocation in mesh beautify.Campbell Barton
2012-11-20code cleanup: comment unused members of bmesh operator slots and some osl ↵Campbell Barton
style edits.
2012-11-12code cleanup: spelling,Campbell Barton
also initialize bmesh-bevel settings struct to zero to avoid possible uninitialized memory later.
2012-10-17code cleanup: add check spelling oslCampbell Barton
2012-10-17style cleanup: make OSL follow our C style convention. ↵Campbell Barton
http://wiki.blender.org/index.php/Dev:Doc/CodeStyle
2012-10-11style cleanup:Campbell Barton
also add helper makefile targets: * tbz - makes a tar.bz2 of an svn export * test_style_qtc - outputs style checks in qtc task format.
2012-10-06added simple checker for array sizes, uses clang to parse C/C++,Campbell Barton
Warns if an array is passed to a function where the array is declared larger, eg float[2] argument is passed function defined as float[3], (or a greater size). Existing free static checkers dont do this from what I can tell.
2012-09-16fix for error in recent commit (made function static that shouldn't have ↵Campbell Barton
been), add extra gcc warnings to cmake.
2012-09-14add checking target `check_smatch`Campbell Barton
2012-08-16for the default make/cmake wrapper, use ../build_os rather then ../build/osCampbell Barton
2012-07-04More spell checking.Bastien Montagne
2012-05-27cmake editsCampbell Barton
- only show mingw option when building with mingw - always run cmake configure with convenience build targets so failed configurations stop re-configuring. - disable WITH_GHOST_XDND in 'make lite'
2012-05-14style cleanup: imbuf & iconsCampbell Barton
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2012-05-02source code style checker to, (similar to pythons pep8 checker)Campbell Barton
currently checks for brace placement and some whitespace use. can be accessed with: make test_style or... source/tools/check_style_c.py source/blender also style cleanup on bmo_primitives.c
2012-03-01Spelling CleanupCampbell Barton
2012-02-28move bmesh wiki docs into bmesh header and update doxygen.Campbell Barton
also have doxygen ignore *.py files and fix some warnings.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-11-23minor changesCampbell Barton
- avoid duplicate image enum definitions. - move image UI format & bw/rgb/rgba onto 1 line. - add 'make config' convenience target to run ccmake or cmake-gui