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-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-05-12svn merge -r36603:36628 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-05-11Code cleanup: remove readblenfile module, only contained some utility functionsBrecht Van Lommel
to read .blend files from runtimes, folded those into blenloader.
2011-05-09=bmesh= merge from trunk at r36529Joseph Eagar
2011-05-07Code cleanup: remove source/kernel module, this wasn't really the kernel ofBrecht Van Lommel
anything, only contained a hash map and functions to pass command line args to the game engine. Moved those to container and BlenderRoutines modules.
2011-05-06Patch #27225: blenderplayer resource compilation error fix for cmake + mingw,Brecht Van Lommel
patch by Ryakiotakis Antonis.
2011-04-18cmakeCampbell Barton
- allow building blenderplayer with redcode. - when ffmpeg is enabled remove strict compiler errors for imbuf and blenkernel since its hard to avoid these warnings across ffmpeg versions.
2011-04-15=bmesh= merge from trunk at r36153Joseph Eagar
2011-04-12revert Joseph Eagar's eltopo commits r36073, 36075 (& some minor edits)Campbell Barton
discussed with Janne, Ton, Nathan and we agreed this kind of change at least needs discussion with module owners. Its also too close to release to be making these kinds of changes. commands used: # reverse merge svn merge -r36073:36072 . # for some reason this gave a lot of property changes svn revert `svn st | grep "^ M" | awk '{print $2}'` # reverse merging didn't work here, removing while dir. svn rm extern/eltopo/ # manually fixed conflict in # ./source/blenderplayer/CMakeLists.txt # # also manually removed 2 lines from # ./CMakeLists.txt
2011-04-12enable blenderplayer library sorting on windows, (was already enabled for ↵Campbell Barton
blender), resolves linking issue on windows
2011-04-10=cloth collisions=Joseph Eagar
Plugged the eltopo library into the cloth solver. I was playing with it earlier, and it's so easy to use I decided to quickly put it in (trunk's) cloth. See http://www.cs.ubc.ca/labs/imager/tr/2009/eltopo/eltopo.html . The authors are on the bleeding edge of continuous collision detection (one of them did ILM's cloth sim). I don't really have to time to plug it into softbody, particles, bullet, fluid, etc, but doing so would be pretty straightforward. I'll leave that up to someone else. To use, turn on USE_ELTOPO (in cmake) or WITH_BF_ELTOPO in scons.
2011-04-09Add missing defines for .rc file.Nathan Letwory
2011-04-06add option WITH_BUILTIN_GLEW, so linux packagers can disable to use their ↵Campbell Barton
own glew library.
2011-03-31remove bpy python api from blenderplayer, it was being linked but not ↵Campbell Barton
initialized/available.
2011-03-05blenderplayer building again in CMake + OSX (and Linux I guess) patch from ↵Dalai Felinto
IRIE Shinsuke
2011-02-27merge with/from trunk at r35190Joseph Eagar
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-21build python module without binreloc, add dummy argv[0] to initialize bprogname.Campbell Barton
2011-02-15...and for blenderplayerCampbell 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-17cmake was complaining when there was no libs skipped.Campbell 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.
2010-12-08use lowercase for cmake builtin names and macros, remove contents in else() ↵Campbell Barton
and endif() which is no longer needed.
2010-12-06CMake: use a global list to store libraries built rather then ↵Campbell Barton
cmake_blender_libs.txt file.
2010-11-30Add option for CMake to build libredcode, also use CODEC prefix for ffmpeg, ↵Campbell Barton
quicktime & sndfile options.
2010-11-21- check IF WIN32 AND NOT UNIX (for cygwin)Campbell Barton
- patch from Mike S to enable OpenMP and xcode
2010-11-18rename libs internal libs for CMake + SCons (used in MSVC project files)Campbell Barton
for game engine use "ge_" prefix & make names generally more descriptive.
2010-11-12Getting BLF to work with the Blenderplayer.Mitchell Stokes
2010-11-05fix for linking the player, also fixes building without python and bullet.Campbell Barton
2010-10-16- blender player builds again with CMake.Campbell Barton
- remove duplicate entries for libs for blender binary (where possible)
2010-09-15Fix cmake/osx blenderplayer linking.Brecht Van Lommel
2010-09-07merge from trunk at r31523Joseph Eagar
2010-08-24rename some cmake build targetsCampbell Barton
2010-08-03build options to disable image formats WITH_CINEON, WITH_HDR.Campbell Barton
- updated cmake, make & scons. - renamed CMake build options WITH_TIFF -> WITH_IMAGE_TIFF, same for DDS, OPENJPEG etc.
2010-05-08Fix blenderplayer linking issues when building with CMake on unix systemsDamien Plisson
2010-02-12correct fsf addressCampbell Barton
2010-01-11blenderplayer building with cmakeCampbell Barton
2009-09-06white space commit. (2 spaces -> tab).Campbell Barton
Was annoying to use a different editor for cmake only. theeth says this should be ok with gsoc and merges from branches.
2009-09-05fix for relative path to build bplayer with cmake in windows (ffmpeg still ↵Dalai Felinto
needs to be off)
2009-09-04fix for ffmpeg with cmake, now linkingJoerg Mueller
2009-09-04fix for ffmpeg with cmake, still not linking yetCampbell Barton
2009-09-04== SCons ==Nathan Letwory
* first working changes to get blenderplayer linking * blenderplayer/ moved into source/ (CMakeLists.txt changed for that too) * added externs for bprogname to gp_ghost, so that it links properly