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
2014-03-29Checker percentage calc was wrong, also cleanupCampbell Barton
2014-03-29Update clang array checker for new clang py apiCampbell Barton
2014-03-25Build file macro for testing unordered_map C++ container support.Lukas Tönne
Using unordered_map and unordered_set C++ container types currently requires careful testing or usage of boost, due to the various confusing C++ version differences in include paths and namespaces. Libmv defines tests for these cases in cmake and scons, such that ceres can use any available implementation, or fall back too std::map/std::set if none can be found. This patch generalizes this buildfile code by providing a Blender macro. * cmake: defines both the variables used by libmv at them moment as well as 2 variables UNORDERED_MAP_INCLUDE_PREFIX and UNORDERED_MAP_NAMESPACE, which can later be used in other C++ parts for convenience. * scons: adds a tool script returning the include prefix and namespace. Libmv checks these to define the appropriate definitions for ceres. Differential Revision: https://developer.blender.org/D425
2014-03-07tweaks to buildinfoSergey Sharybin
We wouldn't really have release branches, building will happen from annotated tags. Made it so building tag revision equals to a master branch.
2014-02-27patch cmake_linux_install.sh to do multithreaded buildLawrence D'Oliveiro
The script ##cmake_linux_install.sh## is currently invoking ##make## in single-threaded mode; this patch changes it to take advantage of all available CPU threads. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D358
2014-02-20Fixes for buildinfo hash/branch detectionSergey Sharybin
Branch name and hash didn't work properly when having disconnected HEAD or when having current HEAD below upstream.
2014-02-13Add the date to the CPack rpm package versionDan Eicher
Updating rpms built from 'make package' has issues using the git hash since it isn't in a set order like svn commits, this lets it use the date to determine if the rpm is newer than the installed version. Also updates the license text.
2014-01-28Code cleanup: remove references to svn and code styleCampbell Barton
2014-01-27Build System: icon files now depend on UI_icons.h for CMakeCampbell Barton
Now changing UI_icons.h causes icons to be re-generated, without this adding a new icon wouldn't automatically get into the generated PNG.
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-16CMake: add missing dependency for icon targetCampbell Barton
2014-01-15Fix for rBec81feab6649: better to search for versionned libs first, else it ↵Bastien Montagne
can use your system ones instead of those built by install_deps!
2014-01-14CMake: Fix libname handling of OpenEXR 2.1. The library built with Autotools ↵IRIE Shinsuke
was not found. Weird library names having version suffix (e.g. libIex-2_1.so) are used only when the OpenEXR was built with CMake. Building the library with the Autotools doesn't add the version suffix.
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-04CMake: fix for OpenEXRConfig.h not being found on some Linux systemsCampbell Barton
2014-01-04Code Cleanup: use cmake case matching other find modulesCampbell Barton
2013-12-17Better handling of new libnames of OpenEXR 2.1 (same solution as one used in ↵Bastien Montagne
OIIO/OSL source).
2013-12-10CMake: report messages as status (else ccmake treats like an error)Campbell Barton
2013-12-08Update install_deps.sh to OIIO 1.39 and OSL 1.4.0.Bastien Montagne
Note that I also updated OpenEXR to 2.1.0 (and updated our CMake openexr module as well). Users will have to update their build settings as told by the script (also in BUILD_NOTES.txt generated file)! Note I removed all ugly patches from this script, we are currently using custom git repo for OpenEXR/OIIO/OSL, hopefully we will soon be able to use vanillia code from official repos!
2013-12-02CMake: check CMAKE_C_COMPILER_ID instead of CMAKE_CXX_COMPILER_IDCampbell Barton
While its possible to have different C/C++ compilers, we dont support this at the moment, so just check C compiler ID for now.
2013-11-29Buildinfo: suppress error prints when building local branchesSergey Sharybin
Before this console output contained messages about branch is not configured to use any upstream branch which is not useful information at all.
2013-11-28Fix buildinfo hash for cases there's no upstream set for the branchSergey Sharybin
2013-11-28Fix for previous fix (tm) commitSergey Sharybin
Ok, this is nasty. SOURCE_DIR is somehow being defined from CMakeLists.txt in source/creator by the looks of it and actual issue as extra slash in the end of path which was passing to EXISTS command.
2013-11-27Fixes for buildinfoSergey Sharybin
- It was using SOURCE_DIR which is undefined on windows. No idea why it was defined on Linux, could be some co-incident. Correct usage is CMAKE_SOURCE_DIR. - Remove usages of SVN's revision.
2013-11-25Show hash from latest pushed commit in buildinfoSergey Sharybin
Before this hash of latest local commit was used, which is not so much useful since nobody can access that commit hash.
2013-11-25CMake Build: option to compile without opennl/superlu.Campbell Barton
2013-11-19Buildinfo fixesSergey Sharybin
- Use -M suffix if working tree does have uncommitted modifications. - Local commits are considered local changes as well
2013-11-16Fixes for buildinfo of exported source treeSergey Sharybin
- Better to set branch/hash to "unknown" so it's clear build is done from exported tree. - SCons used to reference undefined variable.
2013-11-16Remove nested check for .git folder exists in buildinfo.cmakeSergey Sharybin
Title says it all :) Pointer by IRIE Shinsuke in the ML, thanks!
2013-11-15Further tweaks to buildinfoSergey Sharybin
Summary: Old idea with changes since previous release tag didn't work good enough. In most of the cases tag was done in a branch hence not actually reachable from the master branch. Now change since release is gone, and date of the latest commit is used instead. The date is displayed in format YYYY-MM-DD HH:mm in the splash. New bpy.app fields: - build_commit_timestamp is an unix timestamp of the commit blender was build from. - build_commit_date is a date of that commit. - build_commit_time is a time of that commit. Reviewers: campbellbarton Differential Revision: http://developer.blender.org/D5
2013-11-15Remove debug-only print from cmake macrosSergey Sharybin
Left it there by an accident.
2013-11-09Be ready for changes in bf-translations repositorySergey Sharybin
Made it so if there's release/datafiles/locale/po folder, then all the .po files will be converted to .mo at blender compile time and installed to an appropriate location. Uses small own implementation msgfmt which is based on msgfmt.py from Python project, but also supports contexts. There's no functional changes for until we've switched to use source .po files instead of pre-compiled .mo. P.S. Well, there's one change which is msgfmt.cc being compiled even if it's not used, but would rather not clutter code with checks since pretty soon we'll use this program anyway.
2013-11-04Made buildinfo aware of builds from GITSergey Sharybin
- Use commit number since last annotated tag as a revision number replacement. It'll eb followed by 'M' symbol if there're local modification in the source tree. - Commit short SHA1 is included. Helps getting information about commit used to build blender with much faster. - If build is not done from master branch, this also will be noticed in the splash screen. This commit also replaces revision stored in the files with git-specific fields (change and hash). This is kind of breaks compatibility, meaning files which were saved before this change wouldn't display any information about which revision they were saved with. When we'll finally switch to git, we'll see proper hash and change number since previous release in the files, for until then svn version will be used as a change number and hash will be empty. Not a huge deal, since this field was only used by developers to help torubleshooting things and isn't needed for blender itself. Some additional tweaks are probably needed :)
2013-10-25add check for cmake that source files are not included multiple timesCampbell Barton
2013-10-12code cleanup: use const's for vector args.Campbell Barton
2013-09-25rename LLVM_LIB_DIR to LLVM_LIBPATH to match other cmake vars.Campbell Barton
2013-09-20code cleanup: quiet rna warnings, remove remove_strict_flags() for cmake/rna.Campbell Barton
also set_source_files_properties() wasn't working for rna_*_gen.c files, set dna.c and generated data files with generated property too.
2013-09-08update bmesh doxy docs, remove double-promotion warnings in ↵Campbell Barton
remove-strict-flags cmake macro.
2013-08-31use CMAKE_DL_LIBS rather then linking libdl directly.Campbell Barton
added to cycles standalone too.
2013-08-28cmake: set python, llvm and osl libs as advanced.Campbell Barton
2013-08-26Fix cmake Inkscape auto generate of SVG on OS X giving an error popup, the ↵Brecht Van Lommel
binary that is found by find_program is a shim that doesn't take command line arguments.
2013-08-26Remove (comment out) auto-generating png form svg (r59382) in CMake, handy ↵Bastien Montagne
but gives nasty "false changes" in svn. Let's try not to forget to update PNGs when needed, then!
2013-08-22Automatically re-generate png icon files from svg ones (CMake only for ↵Bastien Montagne
now)... Expects Inkscape program.
2013-08-11remove unused auto-key struct-member from uiAfterFunc, add compiler defines ↵Campbell Barton
to cppcheck utility script.
2013-08-08pass compiler defines such as __FLT_MIN__ to smatch and sparse (they fail ↵Campbell Barton
without them).
2013-07-15clang/cmake - quiet warnings for external libs and reference moto as a ↵Campbell Barton
system include.
2013-07-10remove reference to wrong python version in comments & pedantic style edit.Campbell Barton
2013-06-21Code cleanup: fix some vs2012 compiler warningsBrecht Van Lommel
2013-06-17cmake: remove set_lib_path macroCampbell Barton
2013-06-17CMake / vc2010:Thomas Dinges
* Remove vc2010 support from cmake. There is some "if(MSVC10)" left in extern - ceres, but will leave that for Sergey. :)