Woo Hoo. First git commit.

Changes for VC2013

Now, I can build Blender with VC2013 with Cycles, Collada, OpenExr,OpenImageIO disabled. Also, you need VC2008 sp1 installed to make old libs compatible.
This commit is contained in:
Alexandr Kuznetsov
2013-11-29 14:50:59 -05:00
parent cd4fd50562
commit e2429d6492
12 changed files with 19 additions and 4 deletions

View File

@@ -144,9 +144,13 @@ static const int NAN_INT = 0x7FC00000;
#ifdef WIN32
# ifndef FREE_WINDOWS
# define isnan(n) _isnan(n)
# ifndef isnan
# define isnan(n) _isnan(n)
# endif
# define finite _finite
# define hypot _hypot
# ifndef hypot
# define hypot(a, b) _hypot(a, b)
# endif
# endif
#endif

View File

@@ -32,6 +32,7 @@
#include "COM_ExecutionSystem.h"
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

View File

@@ -29,6 +29,7 @@
*/
#include <string>
#include <algorithm>
#include "../system/FreestyleConfig.h"
#include "../system/Precision.h"

View File

@@ -29,6 +29,7 @@
*/
#include <stdlib.h>
#include <algorithm>
#include "BLI_utildefines.h"

View File

@@ -30,6 +30,7 @@
#include <map>
#include <string.h>
#include <algorithm>
#include <utility>
#include <vector>

View File

@@ -29,6 +29,7 @@
*/
#include <stdexcept>
#include <algorithm>
#include <memory>
#include "OccluderSource.h"

View File

@@ -36,6 +36,7 @@
#include <string>
#include <set>
#include <errno.h>
#include <algorithm>
#include <openexr_api.h>