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
2020-03-11Windows: Cleanup warning about non returning dtorRay Molenkamp
`google::LogMessageFatal::~LogMessageFatal` calls `abort` which MSVC correctly identifies as 'not returning' and warns about a potential memory leak. Given this is intended behaviour and glog is not overly concerned with shutting down the process nicely, we can safely ignore this warning.
2019-04-17Cleanup: use 2 space indentation for CMakeCampbell Barton
2019-04-16CMake: fix building without libmvCampbell Barton
2019-04-16CMake: add library deps to CMakeLists.txtCampbell Barton
Tested to work on Linux and macOS. This will be enabled once all platforms are verified. See D4684
2019-04-14CMake: prepare for BLENDER_SORTED_LIBS removalCampbell Barton
No functional change, this adds LIB definition and args to cmake files. Without this it's difficult to migrate away from 'BLENDER_SORTED_LIBS' since there are many platforms/configurations that could break when changing linking order. Manually add and enable WITHOUT_SORTED_LIBS to try building without sorted libs (currently fails since all variables are empty). This check will eventually be removed. See T46725.
2019-02-05Cleanup: remove contributors for CMake filesCampbell Barton
Following removal from C source code. See: 8c68ed6df16d8893
2018-03-23Glog/gflags: Reduce amount of local modificationsSergey Sharybin
With better directory layout and more proper include statements we can avoid several local modifications, such as changing config.h for Windows Glog and the ones related on pass-through statements in logging headers in Glog. This commit also makes unused functions not-a-warning for external code.
2018-03-22Glog: Restore some custom config for MSVC2015Sergey Sharybin
2018-03-22GLog: Tweak settings according to our configSergey Sharybin
We do have gflags.
2018-03-22Glog: Workaround mess around windows and non-windows headersSergey Sharybin
Seems we can not use include directories order trick, since files are included form inside ".." string, which forces current directory to be checked first.
2018-03-22Glog: Attempt to fix compilation error on WindowsSergey Sharybin
Ideally it should be possible without hacking into sources files of Glog itself.
2018-03-22Glog: Restore haiko OSSergey Sharybin
2018-03-22Update Google librariesSergey Sharybin
This commit updates: - gflags 2.2.0 -> 2.2.1 - glog 0.3.4 -> 0.3.4 - gmock 1.7.0 -> 1.8.0 - gtest 1.7.0 -> 1.8.0
2018-02-09CMake: include missing headersCampbell Barton
2017-11-30Haiku OS SupportCampbell Barton
D2860 by @miqlas Even though Haiku is a niche OS, only minor changes are needed.
2016-11-22GLog: Workaround compilation error on HurdSergey Sharybin
There is syscall headers but no SYS_Write syscall.
2016-11-21Glog: Fix compilation error on ppc64elSergey Sharybin
This was fixed in upstream already. Time to re-bundle?
2016-05-24Add upstream information to librariesSergey Sharybin
2016-02-21Attempt to fix GLog compilaton on FreeBSDSergey Sharybin
Copied some config variables from an original config file.
2016-01-22Hacky compile fix for mingw compile issue reported by bat3a on bf-committersJoshua Leung
I've been using this fix in another branch locally, so it seems to work fine. The other #ifdef checks should be checked on too, as __MINGW32__ and __MINGW64__ do NOT seem to be defined when compiling that file
2016-01-04Move GLog/GFlags to extern/Sergey Sharybin
This is where the libraries belongs to actually, they are not only used by Libmv now, but also by tests and Cycles.