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
2011-03-29remove DEBUG flag from OpenNL with cmake, was giving too many prints in the ↵Campbell Barton
console when unwrapping.
2011-03-27pep8 cleanupCampbell Barton
2011-03-25include gcc builtin defines in qtcreator project file (__VERSION__, ↵Campbell Barton
__x86_64__, __linux__ etc)
2011-03-24write project files into the build dir.Campbell Barton
2011-03-24the script is now creating 2 project files:M.G. Kishalmi
Blender.creator Blender_Python.creator .glsl files have been added to the former latter contains everything .py
2011-03-24support for blender as a module on win32.Campbell Barton
2011-03-21CMake package_archive target to create a .zip/.tar.bz2 package on mac/unix,Brecht Van Lommel
to be used by buildbot.
2011-03-16Mac OS X cmake changes and bundle fixesBrecht Van Lommel
For cmake users, you should now use "make install" instead of "make". This was already changed for Linux and Windows. Same for Xcode, use the install target. Changes: * CMake install mechanism, resulting bundle was verified to be indentical here. * For cmake, include Info.plist in bundle using builtin mechanism for that. There was some code in packaging.cmake, but it wasn't correct as these properties need to be set on the executable. * For scons, fix app bundle version, was still using removed release/VERSION. * Remove unused blendercreator.app and blenderpublisher.app. * Fix Info.plist being set as a binary file in svn, should be plain text.
2011-03-15pep8 edits and remove commented code from last commit.Campbell Barton
2011-03-12cmake, search $HOME/py32 for python now too.Campbell Barton
2011-03-10CMake should find python now without manual options being set on linux.Campbell Barton
cmake on *nix detects python ABI flags for debug and release mode. searches /usr /usr/local /opt/py32
2011-03-07se BLI_snprintf() for msvc compat, cleanup CMake file, some bad comments ↵Campbell Barton
left in. also on only try build RPM's on linux.
2011-03-03fix for invalid empty string check in uniquename callback.Campbell Barton
2011-03-03added support for windows/mingwCampbell Barton
2011-03-03fix error in qtcreator project file arg checking and check for cmake files.Campbell Barton
2011-02-28git users complain this breaks for themCampbell Barton
2011-02-27- use Py_CLEAR for python internally referencing other PyObjects (supposed ↵Campbell Barton
to be safer). - detect includes for qtcreator projects as well as the ones from cmake (it didnt return all of the right paths).
2011-02-26fix for 'live edit', running python scripts as you typeCampbell Barton
- errors would jump to the line which gets in the way. - the window wouldn't always redraw.
2011-02-26qtcreator project generator now includes defines and correct include paths.Campbell Barton
2011-02-26recent changes to svn broke rpm builder, also include rpm version infoCampbell Barton
2011-02-25fix for scons with recent change to how BINRELOC is enabled via cmake.Campbell Barton
also add WITH_PYTHON define to qtcreator project generator until we get a way to add them properly.
2011-02-25Fix buildinfo, as pointed by IRIE Shinsuke.Guillermo S. Romero
Added a note about doubtful "copy if different".
2011-02-25Make buildinfo not fail with git-svn as suggested by Nicholas Bishop.Guillermo S. Romero
Improve formating and comments a bit.
2011-02-25SVN maintenance.Guillermo S. Romero
2011-02-24fix for cmake not having the correct svn revision in buildinfo, now generate ↵Campbell Barton
a header every build with the time, date, svn revision.
2011-02-22cmake was using dna source list with the variable out of scope, possibly ↵Campbell Barton
causing dependency problems.
2011-02-21better macro for getting the blender version from BKE_blender.h, also re-run ↵Campbell Barton
CMake if BKE_blender.h changes.
2011-02-21fix for cmake with last commit.Campbell Barton
2011-02-21fix [#26152] Blender File for Image too SmallCampbell Barton
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
2011-02-21Experimental option to build blender as a python module, rather then blender ↵Campbell Barton
embedding python. CMake build option WITH_PYTHON_MODULE, will build ./bin/bpy.so This allows 'bpy' to be imported from python or other applications/IDE's which embed python, eg: python -c "import bpy ; bpy.ops.render.render(write_still=True)" This runs in background mode and has similar restrictions to running a script: blender --background --python test.py TODO: - install to site-packages with blender scripts - add support for imp.reload()
2011-02-17CMake: remove workaround for cmake 2.8.3 problem testing ↵Campbell Barton
-Werror=strict-prototypes flag (now 2.8.4 is out). This is harmless, CMake 2.8.3 just wont build with -Werror=strict-prototypes which is nice for picky devs.
2011-02-17pep8 cleanup and remove unused vars/importsCampbell Barton
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-15patch from IRIE Shinsuke, use systems openjpeg on *nix.Campbell Barton
2011-02-15CPack packaging support from Dan Eicher, tested to build redhat RPM's, a Mac ↵Campbell Barton
bundle also defined.
2011-02-04pep8 cleanupCampbell Barton
2011-01-26cmake attempted fix before didnt work (I cant test on OSX), this should fix.Campbell Barton
2011-01-26missed this when updating cmake filesCampbell Barton
2011-01-25use cmake defined names for jpeg, png, zlib and python libs, building on ↵Campbell Barton
*nix with non-standard libjpeg/png/zlib locations was broken. in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-25cmake maintenance, was missing 2 headers and made some minor improvements to ↵Campbell Barton
cmake_consistency_check.py. also converted GHOST_SystemWin32.cpp to utf8.
2011-01-21correction to own cmake error checking script.Campbell Barton
2010-12-23rename blenderlib to blender_add_libCampbell Barton
2010-12-23Compact -I paths in makefiles for more readble files/output.Guillermo S. Romero
Also some white space cleaning and removal of redundant parameter.
2010-12-21bugfix [#24469] Cannot add keyframes on custom properties in IDPropertyGroupsCampbell Barton
2010-12-21better make_quiet.sh filter with threaded builds.Campbell Barton
2010-12-21fix for cmake flag detection, was not caching the resulting variable so the ↵Campbell Barton
test ran each time. also cache SSE, SSE2 checks.
2010-12-20simple make wrapper to give quiet output. (more like nan-makefiles)Campbell Barton
2010-12-17script to generate qtcreator project files, advantage is they include all ↵Campbell Barton
source which is nicer for refactoring.
2010-12-16fix for error in testing C/C++ flagsCampbell Barton
2010-12-16last commit to fix warnings didnt set them at all, not it works as it should.Campbell Barton
also made cmakes output a lot quieter, messages can be uncommented for debugging or added back if other devs need this for some reason.