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-09-12fix for error linking opencollada on linux.Campbell Barton
2011-09-06remove -Wundef for code we don't maintain & generated code.Campbell Barton
2011-08-22buildinfo is now quoted from the build systems, avoids stripping quotes on ↵Campbell Barton
startup. tested with linux/cmake linux/scons windows/cmake/mingw windows/cmake/msvc
2011-08-08add missing header to cmake files (else some IDE's wont index it)Campbell Barton
2011-08-02more cmake/x11 editsCampbell Barton
- added includes for spnav - added FindSpacenav.cmake which allows using spacenav from a nonstandard path. - remove NDOF_LIBPATH, use a full library path instead.
2011-08-02NDOF related editsCampbell Barton
- fix for building without NDOF on X11 - quiet some warnings
2011-07-22enable CMake builds with spacenav (contributed by Kevin Cozens)Mike Erwin
2011-06-28cleanup for cmake msvc build options, reference some libs directly, fix ↵Campbell Barton
conflicting flags /Ob1 and /Zi for debug
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-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-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-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-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-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.
2011-05-28include ffmpeg_compat header in cmake source list.Campbell Barton
2011-05-23CMake changesCampbell Barton
- don't allow building if the LIBDIR is not found on mac/windows. - by default use -O2 rather then -O3 for GCC release flags, was crashing some GCC versions and blender releases are supposed to use -O2.
2011-05-16LCMS code removed, was an experiment but never finished.Brecht Van Lommel
2011-05-12option to link with jemalloc on *nix, off by default.Campbell Barton
2011-04-12- fix for cmake when there is no version character.Campbell Barton
- link to release docs correctly from the splash page.
2011-04-06add option WITH_BUILTIN_GLEW, so linux packagers can disable to use their ↵Campbell Barton
own glew library.
2011-04-03fix cmake for when BLENDER_VERSION_CHAR is not set.Campbell Barton
2011-03-29remove DEBUG flag from OpenNL with cmake, was giving too many prints in the ↵Campbell Barton
console when unwrapping.
2011-03-24support for blender as a module on win32.Campbell Barton
2011-03-03fix for invalid empty string check in uniquename callback.Campbell Barton
2011-02-26recent changes to svn broke rpm builder, also include rpm version infoCampbell Barton
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-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-15patch from IRIE Shinsuke, use systems openjpeg on *nix.Campbell 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.
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-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-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.
2010-12-16CMake now tests warnings are supported, GCC 4.0 wasn't working because of ↵Campbell Barton
unsupported warnings. this can work for other compilers too, currently intel and gcc use this.
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-12-03Enabled GCC -Wwrite-strings warning for CMake and replaced many 'char's for ↵Campbell Barton
'const char's,. Only one functional change where Transform orientations passed "" to BIF_createTransformOrientation() which could then have the value written into.