Fix slashes in SWIG files to fix compilation in Linux.

This commit is contained in:
Matt Williams 2011-01-28 15:23:18 +00:00
parent ae3ac704e4
commit 1fed1c161a
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
%module TypeDef
%{
#include "PolyVoxImpl\TypeDef.h"
#include "PolyVoxImpl/TypeDef.h"
%}
%include "PolyVoxImpl\TypeDef.h"
%include "PolyVoxImpl/TypeDef.h"

View File

@ -1,11 +1,11 @@
%module VertexTypes
%{
#include "PolyVoxImpl\TypeDef.h"
#include "PolyVoxImpl/TypeDef.h"
#include "Vector.h"
#include "VertexTypes.h"
%}
%include "PolyVoxImpl\TypeDef.h"
%include "PolyVoxImpl/TypeDef.h"
%include "Vector.h"
%include "VertexTypes.h"