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
path: root/tools
AgeCommit message (Collapse)Author
2009-02-16SCons:Nathan Letwory
* giving compileflags, cc_compileflags and cxx_compileflags to BlenderLib() now actually overrides any other setting (so there's no unclarity when ie. conflicting options are being specified in REL_CFLAGS et al). These are set after either release or debug flags, but before any *_WARN flags (so those stay maintained). * add cxx_compileflags for GE parts on win32-vc to have better performance. * NOTE: if platform maintainers (OSX and Linux) could check and do the same for their systems. Not vital, but probably very, very much welcomed by GE users.
2008-12-17* commit r17900 by Genscher was wrong.Nathan Letwory
- Instead of defining such defines for the entire codebase in Blender.py, add the right checks and definitions to the places where it matters. - Only check+set WITH_BULLET instead of also GAMEBLENDER=1 - NOTE: No global defines allowed in BlenderLib.
2008-12-17Reverting revision 17417 which broke cloth collisions which check also in ↵Daniel Genrich
blenkernel/intern for WITH_BULLET
2008-12-14(no commit message)Jens Ole Wund
2008-12-14adding hintJens Ole Wund
Building on NSIS_Installer fails when path to NSIS tools is not set
2008-11-18some scons command line args were not working since recent changes- Campbell Barton
scons CCFLAGS="-O0 -ggdp3" for example would pass on the args including the "'s to scons, causing the build to fail.
2008-11-17Added BF_PROFILE_LINKFLAGS, Compiling with BF_PROFILE=1 was also throwing a ↵Campbell Barton
python error.
2008-11-14update for compiling cross compiling win32 on linux, had a lot of trouble ↵Campbell Barton
with makesdna, the only way I could build and link was as a win32 binary. Still unable to link blender.exe and run with wine.
2008-11-12Change the LCG_DIR usage to BF_name_LIBPATH where possible. FFMPEG can't be ↵Nathan Letwory
done like that yet, needs some extra thought to handle differences between vc and mingw setup
2008-11-12Remove BGE defines from highest level and define only there where needed. ↵Nathan Letwory
This prevents scons from doing complete rebuilds when toggling BGE related options.
2008-11-12previous commits showed that the absolute path problem was even deeper. This ↵Nathan Letwory
should fix yet again some of the problems with giving them to BF_BUILDDIR
2008-11-11fix for another place where absolute paths for BF_BUILDDIR where a problem ↵Nathan Letwory
(generating results in the wrong place)
2008-11-11Fix typo that prevented CC_WARN from being added to build commandsNathan Letwory
2008-11-10missing comma made scons arg BF_CXX_LIB_STATIC not workCampbell Barton
2008-11-10* add Brecht's small patch to make values to BF_QUICK and BF_QUICKDEBUG ↵Nathan Letwory
function as partial search entries. - this means you can do BF_QUICK=bf_ and it would build all libs that contain bf_ in their name. This makes it easier to use, since you don't have to remember the exact names * Update documentation to mention scons-local.
2008-11-07* fix typo found by brechtNathan Letwory
2008-11-05=== SCons ===Nathan Letwory
* BlenderLib now expects lists for all compiler related flags (release, profile, debug, warn). I changed the default config files, but do double-check your user-config files, esp. if you did a full copy of an old default platform config
2008-11-05* remove redundant commentNathan Letwory
2008-10-31* Minimum SCons version is now 1.0.0Nathan Letwory
- Code has been changed to reflect this (ie. deprecated functions are not anymore used) * clean up the C and C++ compiler flags mess. - in the environment construction of BlenderLib all the compile flag governing options have been split in the *C*, *CC* and *CXX* containing equivalents. C is for C compiler only flags. CC is for C and C++ compiler flags and CXX is for C++ compiler only flags. All the platform default config files need to be double checked and fixed wherever it looks necessary. Either DIY, or send me a note with needed changes. - a start for the BlenderLib parameter list has been made - all the SConscripts need to be checked and modified to hand in flags properly. * A theeth request: make -jN settable in the config file. - I give you BF_NUMJOBS, which is set to 1 by default. In your user-config.py, set BF_NUMJOBS=4 to have 4 parallel jobs handled. Yay.
2008-10-28added scons option BF_WITH_PYTHON (defined as DISABLE_PYTHON)Campbell Barton
2008-10-22* Minor cleanup of SCons filesNathan Letwory
- cleanup of boolean usage - use True and False now instead of 'true'/'false' or 0/1 - changed SConscripts accordingly
2008-10-22Patch from Timothy BaldridgeNathan Letwory
* add irix6 to GHOST windowing system (same as linux2 et al) * fix faulty return lines in shrinkwrap.c
2008-10-21renamed WITH_BF_BPYDOC to WITH_BF_DOCS, added SConscript for building BGE ↵Campbell Barton
docs too.
2008-10-20=== SCons ===Nathan Letwory
[#17867] Adds option to SCONS to generate Python API documentation Added patch from Brandano with some small improvements (BF_DOCDIR, clean) by yours truly. To use make sure you have epydoc installed. Enable with WITH_BF_BPYDOC=1.
2008-10-20Added WITH_BF_NOBLENDER to scons so that blenderplayer can be compiler by ↵Ken Hughes
itself (false by default). Also added dependency for 'blender' on command line; seems 'blender' was intended to be a target, but would give the error "Do not know how to make target `blender' ".
2008-10-05== FFMPEG ==Peter Schlaile
Added optional OGG / theora / vorbis support. (OGG-format encoding is currently disabled, since the bundled ffmpeg version is broken here) Fixed a bug with PTS-encoding, to make theora work. You have to explicitly enable it and currently only scons is supported. Otherwise: enjoy! :)
2008-10-02* return the right error codeNathan Letwory
* print error message when something goes wrong with nsis installer creation
2008-10-02* make sure we link against proper openmp library when using msvcNathan Letwory
* return error code from makensis process instead of 0
2008-09-19scons update, BF_NO_ELBEEM wasnt working, WITH_BF_SDL wasnt implimented, ↵Campbell Barton
WITH_CCGSUBSURF isnt used anymore.
2008-09-19fixing scons build. needed BoolOption in argument definitionMartin Poirier
2008-09-18scons options BF_CXX, WITH_BF_STATICCXX, BF_CXX_LIB_STATIC for static ↵Campbell Barton
linking to stdc++ because of problems running blender on some systems.
2008-09-16added static openal and openexr options for scons.Campbell Barton
also added a target 'blenderlite' - turns almost everything off, compressed binary is ~3.4meg
2008-09-14scons option for linking python statically - useful for building a more ↵Campbell Barton
compatible blenderplayer, where most games python scripts only use builtin modules anyway.
2008-09-05Merge of first part of changes from the apricot branch, especiallyBrecht Van Lommel
the features that are needed to run the game. Compile tested with scons, make, but not cmake, that seems to have an issue not related to these changes. The changes include: * GLSL support in the viewport and game engine, enable in the game menu in textured draw mode. * Synced and merged part of the duplicated blender and gameengine/ gameplayer drawing code. * Further refactoring of game engine drawing code, especially mesh storage changed a lot. * Optimizations in game engine armatures to avoid recomputations. * A python function to get the framerate estimate in game. * An option take object color into account in materials. * An option to restrict shadow casters to a lamp's layers. * Increase from 10 to 18 texture slots for materials, lamps, word. An extra texture slot shows up once the last slot is used. * Memory limit for undo, not enabled by default yet because it needs the .B.blend to be changed. * Multiple undo for image painting. * An offset for dupligroups, so not all objects in a group have to be at the origin.
2008-08-10* Script to convert BDF pixel fonts into C++ files blender can read. - Amiga ↵Campbell Barton
bitmap font example http://download.blender.org/ftp/incoming/bitmap.png * BF_CONFIG was missing from SCons help menu.
2008-07-09exiting wasnt working (was raising errors), also use dict.keys() rather then ↵Campbell Barton
appending from iteritems,
2008-06-03== redcode ==Peter Schlaile
Disabled by default now on all platforms besides Linux.
2008-06-03== RED one (redcode) ==Peter Schlaile
This adds redcode (the file format of RED one, R3D) support to blender. Seems to work fine with the footage I found on the web, but keep in mind, that because of the unoptimized nature of libopenjpeg, frame decoding isn't that fast. It is also a rather challenging task, to make 4k-float-footage realtime :)
2008-04-28Add BF_X264_CONFIG and BF_XVIDCORE_CONFIG flags to scons, to allow passingKen Hughes
configuration info for cross-compiling to ./configure scripts. Also let makesdna use PLATFORM_LINKFLAGS.
2008-04-28* try/except block around import of BoolOption, to make sure one can use ↵Nathan Letwory
scons-0.98.2 to compile with.
2008-04-27* make sure BF_CONFIG is an accepted ARGUMENTNathan Letwory
2008-04-27this commit allow to pass custom compile flags Jean-Luc Peurière
to all ffmpeg related libs ffmpeg use it own build system and dont respect the flags in config.py define BF_FFMPEG_EXTRA in config.py to pass those flags. I use this on Os X to pass the SDK vars : -isysroot -mmacosx-version-min
2008-04-18I can't spell ;)Kent Mein
(typo fix in the comments) Kent
2008-04-17Change scons so OpenMP library is appended at end of linkage line with otherKen Hughes
libraries (fixes a problem with statically linking OpenMP).
2008-04-16This patch spawns from this game engine issue:Kent Mein
[#7113] GE crash pressing as soon as P on 64 bit Note: glext.h has been removed from the source If you get errors compiling with it you have 2 options download/install glext.h (preferred method) or set WITH_BF_GLEXT=false If your a user and having problems with game engine try setting the env var: WITHOUT_GLEXT 1 Kent
2008-03-19* BF_QUIET can now be set in user-config.py too.Nathan Letwory
2008-02-26removed mingw from the list of platforms to use theJoseph Eagar
debug python lib, as it was causing link errors. if someone wishes to figure out why this is messing up, go ahead.
2008-01-30makes bullet independant from gameengine for cmake, introduces esc-key ↵Daniel Genrich
during sim, disables collisions when no bullet there
2008-01-30Initial commit of cloth modifier from branch rev 13453Daniel Genrich
2008-01-19made BINRELOC disabled by default with scons, only enable for linuxCampbell Barton