Windows header include fix

This commit is contained in:
Jack Andersen 2015-12-18 11:59:54 -10:00
parent 8a33d74c13
commit 86daf8b3f0
1 changed files with 5 additions and 1 deletions

View File

@ -3,9 +3,13 @@
#include <memory> #include <memory>
#include <stdint.h> #include <stdint.h>
#include <pthread.h>
#include "boo/System.hpp" #include "boo/System.hpp"
#if _WIN32
#else
#include <pthread.h>
#endif
namespace boo namespace boo
{ {
struct IGraphicsCommandQueue; struct IGraphicsCommandQueue;