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-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-20patch [#28030] SCONS Build: Build Date reflects "1" instead of actual date ↵Campbell Barton
of build by Scott Giese (sgiese) This bug effected windows and linux.
2011-07-17update to cmake checker script to also check if our include paths are okCampbell Barton
2011-07-12Fix for recent GHOST SDL commit.Sergey Sharybin
SCons rules haven't been changed to deal with new option.
2011-07-05blenderplayer bundle in OSX doesn't need script folder (untested)Dalai Felinto
I can't test this here, somehow blender+scons is failing in my building env. but it should work. Basically it skips the copy of the script folder for the blenderplayer.app I will test it once buildbot get pass this review ;)
2011-07-01minor pep8 editsCampbell Barton
2011-07-01own change to cmake files broke MSVC2010 with Debug configuration, reported ↵Campbell Barton
by Alex K
2011-06-28Explicitly turn off JACK so it's clear it's not supported.Nathan Letwory
2011-06-28cleanup for cmake msvc build options, reference some libs directly, fix ↵Campbell Barton
conflicting flags /Ob1 and /Zi for debug
2011-06-27remove some unused flags and correct aud example headingCampbell Barton
2011-06-26fix for building with msvc/cmake take 2 (think its correct this time)Campbell Barton
also sync build flags with scons.
2011-06-25fix for building with MSVC release, some edits I made didnt work as I ↵Campbell Barton
expected but still built for debug
2011-06-22split cmake check configuration outCampbell Barton
2011-06-21pep8 complianceCampbell Barton
2011-06-21update cmake checker to ignore file list and add some headers to the source ↵Campbell Barton
list.
2011-06-21allow rna to set vertex parent indices, blender checks for invalid values on ↵Campbell Barton
access. build blenderplayer by default on linux with scons.
2011-06-21Set Player building to True by default.Nathan Letwory
2011-06-20fix for python ABI search, was missing 'd'Campbell Barton
2011-06-20- add example for python rna property updateCampbell Barton
- edit the copyright for blender specific cmake find modules
2011-06-19cmake: add find jack moduleCampbell Barton
2011-06-19cmake: add find jemalloc moduleCampbell Barton
2011-06-19cmake: fix for recent break in msvc+collada, also dont cache duplicate ↵Campbell Barton
python include/library variables.
2011-06-19add back PYTHON_LIBPATH, needed for installing on pythonCampbell Barton
2011-06-19cmake add module for finding fftw3.Campbell Barton
also allow debug blender to build with non debug python
2011-06-19cmake: add libsamplerate find moduleCampbell Barton
2011-06-19cmake: added FindOpenJPEG module.Campbell Barton
2011-06-19cmake:Campbell Barton
new macro file_list_suffix() for adding a suffix to every file in a path before the file extension. useful to create names for debug libs on windows.
2011-06-18cmake: make python search into a find package module.Campbell Barton
2011-06-18make better use of cmake builtin funcitons for finding python library/headerCampbell Barton
2011-06-18rename cmake include/libraries to conform with suggested cmake namesCampbell Barton
2011-06-18added FindSndFile cmake module to replace inline checks.Campbell Barton
2011-06-18py-api: store frequently used strings as unicode PyObject's to avoid ↵Campbell Barton
creating/distroying every time. also fix for cmake warning
2011-06-17Fix [#27666] Python/Windows issue: "import uuid" results in an error popupNathan Letwory
submitted by Gaia Clary Ignore msvc runtime libs while linking. Tested on win64.
2011-06-16include some extra search paths for cmake openexrCampbell Barton
2011-06-16fix to FindOpenEXR pointed out by Sergey Sharybin,Campbell Barton
also added check for IlmThread and marked individual library cache variables as advanced.
2011-06-15error in recent commitCampbell Barton
2011-06-15use full library paths for openexr & msvc, also remove unneeded exr includesCampbell Barton
2011-06-15cmake: combine debug/optimized into one target_link_libraries() call.Campbell Barton
2011-06-15replace own inline cmake include search logic for a typical FindXXX.cmake ↵Campbell Barton
module.
2011-06-14cmake: correct uninitialized varsCampbell Barton
2011-06-13Turn off Quicktime support by default. Will be phased out soon.Nathan Letwory
2011-06-13minor updates to the cmake checkerCampbell Barton
2011-06-11fix for using system includes, the include macro wasn't un-setting the ↵Campbell Barton
previous include list so system includes could be mixed up with non system includes. Also workaround for CMake 2.8.4 & GNU-Make which doesn't set CMAKE_INCLUDE_SYSTEM_FLAG_C
2011-06-10added a check to console auto-compleation for pythons struct_seq type, so ↵Campbell Barton
bpy.app and sys.float_info autocompleate their attributes rather then bring treated as a typle.
2011-06-08Shuffle some build code around to ensure debug builds on Windows actually ↵Nathan Letwory
run too. * creator/SConscript is now empty, code is moved to an emitter function in Blender.py * make sure COLLADA debug libs are used when BF_DEBUG=True
2011-06-06fix from nico_ga on IRC, building on MSVC with jack but not ffmpeg.Campbell Barton
2011-06-04Fix for linux buildslaves. Now they should be able to compile branches.Sergey Sharybin
2011-06-04BuildBot: various changes to support building branches.Brecht Van Lommel
2011-06-01Fix #27481: windows uninstaller could remove files unrelated to blenderBrecht Van Lommel
when installing to a folder that already existed. Now the uninstaller will remove only the files it has installed, and leave any other files in the installation directory intact.
2011-05-31cmake maintenanceCampbell Barton
blender_add_lib now takes a separate include argument to suppress warnings in system includes (mostly ffmpeg & python). also only build wm_apple.c on apple+carbon configuration.