Fix Windows compilation problem and update MSVC project files

This commit is contained in:
2008-08-22 15:00:30 +00:00
parent 39a8125e4c
commit 7630539fe8
3 changed files with 20 additions and 1 deletions

View File

@@ -30,8 +30,13 @@
#include "GL/glew.h"
// directory header for py function getBlendFileList
#include <stdlib.h>
#include <dirent.h> // directory header for py function getBlendFileList
#ifndef WIN32
#include <dirent.h>
#else
#include "BLI_winstuff.h"
#endif
#ifdef WIN32
#pragma warning (disable : 4786)