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
2012-09-16use the format attribute in more places, disable X11 options when building ↵Campbell Barton
with GHOST_SDL
2012-09-16fix for error in recent commit (made function static that shouldn't have ↵Campbell Barton
been), add extra gcc warnings to cmake.
2012-09-15Color Management, Stage 1: Initial OpenColorIO library integrationSergey Sharybin
This commit integrates support of OpenColorIO library into build systems. It also contains C-API for OpenColorIO library which could be used by Blender. CMake has got find rules familiar to OpenImageIO's one which makes it easier for build system to find needed libraries and includes. Scons only could use explicitly defined paths to libraries and includes. C-API would be compiled and Blender would be linked against C-API and OpenColorIO but it wouldn't affect on Blender behavior at all. OpenColorIO could be disabled by setting up WITH_OCIO to Off in CMake and setting WITH_BF_OCIO in Scons.
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-09-14Disable legacy compositor by defaultSergey Sharybin
2012-09-10OSL cmake cleanup:Lukas Toenne
* Removed unused lib and include directories (also one bad 'src' include that wouldn't work anyway) * Copied cmake library finding to APPLE and WIN32 sections. These may need some adjustment for their respective OS.
2012-09-10Cleanup for OSL linking in cmake: Move cmake OSL library search and path ↵Lukas Toenne
definition from the cycles macro file to the top-level CMakeLists.txt. This makes the OSL_LIBRARIES and other variables accessible throughout Blender cmake scripts and especially in the creator module for linking libraries.
2012-08-22Turn OpenMP off for MinGW64. I thought it behaved correctly in new compiler ↵Antony Riakiotakis
builds but unfortunately it looks like there is some issue still which mostly shows when openmp threads stop. This causes crashes after rendering with subsurf, multires, when calculating fluids and possibly when other functionality is used as well. This should make MinGW64 builds quite stable again :)
2012-08-20option to build without the legacy compositorCampbell Barton
2012-08-18cmake option to build without iksolverCampbell Barton
2012-08-14Cmake / Windows:Thomas Dinges
* Fix for Boost lib dir when using msvc 2010.
2012-08-14Cmake / Windows:Thomas Dinges
* Fix for Python include path when using msvc 2010.
2012-08-09Cycles / Cmake:Thomas Dinges
* When CUDA building is enabled, build sm_30 kernel as well.
2012-08-07OSX/cmake: refactoring of setting endianess defines, this fixes compile of ↵Jens Verwiebe
builds with endianess other than the buildmachine and avoids also failing configuration with xcode 4.4 due not supporting big_endian archs anymore
2012-08-07Fix for fix, now nestedJens Verwiebe
2012-08-07Fix for endiantest, xcode condition interferred with other osJens Verwiebe
2012-08-07OSX/cmake: Mountain-Lion (10.8 )adaptions, skip unsupported endianess etc., ↵Jens Verwiebe
todo: deployment target management
2012-08-05Windows MSVC libraries:Thomas Dinges
* Some refactor, use set_lib_path macro again, which simplifies the code a bit.
2012-08-04Cmake / Windows Libraries:Thomas Dinges
* Some more fixes for OpenEXR, works now (tested with cv2008 x64 and x32) * Some more changes to have libs in lib/win*/libname/vc2010 folder. Commit to libs itself to change that will follow.
2012-08-04Revert part of r49504 by Genscher:Thomas Dinges
* MSVC Paths were put into the MinGW block, so Mingw did not work anymore. * Also fix paths for vc2010 libs now, so they should work now with cmake.
2012-08-02Remove old boolean operation moduleSergey Sharybin
Carve proved it's a way to go, so the time have came to get rid of old boolean operation module which isn't used anymore. Still kept BOP interface but move it to BSP module. At some point it could be cleaned up further (like perhaps removed extra abstraction level or so) but would be nice to combine such a refactor with making BSP aware of NGons. Tested on linux using both cmake and scons, possible regressions on windows/osx. Would check windoes build just after commit.
2012-08-02OpenEXR: Enable again for MSVC 2010Daniel Genrich
2012-07-05Update build systems to copy needed dlls from MinGW-w64, turn openmp on by ↵Antony Riakiotakis
default for MinGW.
2012-07-04Cmake / Boost:Thomas Dinges
* Code cleanup
2012-07-04Windows (msvc 2010) is now using Boost 1.49 - Updated cmake file.Alexander Pinzon
2012-07-01don't disable cycles when OIIO isnt found, instead throw an error, annoying ↵Campbell Barton
when full build is done and later find cycles isn't on.
2012-06-30Cycles / Boost:Thomas Dinges
* Windows (msvc 2008) is now using Boost 1.49 - Updated cmake file.
2012-06-30the compositor optional for cmake: WITH_COMPOSITORCampbell Barton
2012-06-28code cleanup: cmake buildsystem edits, unused var warnings and better ↵Campbell Barton
description for WITH_PYTHON_MODULE. also disable workaround for some linux installs.
2012-06-25more guardedalloc use in C++, also make compositorMutex a static var, was ↵Campbell Barton
allocated and never freed.
2012-06-23add cmake option WITH_SYSTEM_OPENJPEG so linux can build cycles without ↵Campbell Barton
having libopenjpeg installed.
2012-06-23rename WITH_BUILTIN_GLEW, WITH_SYSTEM_GLEW & negate.Campbell Barton
2012-06-21Set openjpeg to static. Solves linking issues on recent openjpeg updateAntony Riakiotakis
2012-06-11minor fixesCampbell Barton
- new compositor could use uninitialized var - profile conversion could use uninitialized var - set better warnings for clang+cmake. - remove picky warnings from sphinx doc gen shell script.
2012-06-07Cmake:Thomas Dinges
* Removed first line, probably accidentally committed in r47439.
2012-06-05correction to own change with cmake, oiio linking.Campbell Barton
2012-06-05only use tiff/exr when enabled.Campbell Barton
2012-06-04Cycles / OSL:Thomas Dinges
* Compile option to build with OSL, disabled by default.
2012-05-29reenable sm13 for win32 cmakeAntony Riakiotakis
2012-05-27Patch #31563: Additional include directory for FFMPEGSergey Sharybin
Fedora 16 is still using /usr/include/ffmpeg, not /usr/include to store FFmpeg's headers. Added it to search paths. Also remove FFmpeg include directory listed in FFMPEG_INCLUDE_DIRS twice Patch by Arno Mayrhofer (aka azrael3000), thanks!
2012-05-27code cleanup: remove mode comments, these were applied very un-evenly ↵Campbell Barton
across a few files.
2012-05-27cmake editsCampbell Barton
- only show mingw option when building with mingw - always run cmake configure with convenience build targets so failed configurations stop re-configuring. - disable WITH_GHOST_XDND in 'make lite'
2012-05-25Unix: enable use of XDG paths for storing Blender configuration on Linux/BSD/..,Brecht Van Lommel
starting from version 2.64. Unless you have a special system setup, this means the will be in ~/.config/blender rather than ~/.blender. When the version number is changed to 2.64, the "Copy Previous Settings" operator in the splash will copy the settings to the new location. XDG base directory specification: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
2012-05-22Disable building of CUDA 1.3 kernels for cycles for win32 cmake and mingw32 ↵Antony Riakiotakis
scons. They were already disabled for scons MSVC 32bit.
2012-05-19style cleanup: whitespace/indentationCampbell Barton
2012-05-17attempt to fix osx build errorCampbell Barton
2012-05-17Fix own mistake: Open Collada libs are different for MinGW/MinGW64Antony Riakiotakis
2012-05-16Fix compile error with cmake + windows (reported by MiikaH)Daniel Genrich
2012-05-15Fix El Topo:Daniel Genrich
- Library compile errors - 2 Bugs (have been reported to lib owner) - LAPACK for cmake TODO: - Scons is still missing LAPACK lib define - Do other platforms got LAPACK lib?
2012-05-15Cleanup optimization compile flags for mingw-w64. Antony Riakiotakis
After testing it seems that for safe debug sessions, debug build optimizations need to be off. Also removed sse flags from release flags since they are included in ray optimization flags which are on by default.