Enable SimpleAssimpViewX compilation on OSX
Update the XCode projects, and fix several compilation problems.pull/95/head
parent
6d8ccd5882
commit
90179ec6e3
|
@ -8,10 +8,10 @@
|
||||||
|
|
||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
#import <OpenGL/OpenGL.h>
|
#import <OpenGL/OpenGL.h>
|
||||||
#import "aiColor4D.h"
|
#import "color4.h"
|
||||||
#import "aiVector3D.h"
|
#import "vector3.h"
|
||||||
#import "aiVector2D.h"
|
#import "vector2.h"
|
||||||
#import "aiMatrix4x4.h"
|
#import "matrix4x4.h"
|
||||||
|
|
||||||
/* workflow:
|
/* workflow:
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,10 @@
|
||||||
#import "ModelLoaderHelperClasses.h"
|
#import "ModelLoaderHelperClasses.h"
|
||||||
|
|
||||||
// assimp include files. These three are usually needed.
|
// assimp include files. These three are usually needed.
|
||||||
#import "assimp.h"
|
#import "cimport.h"
|
||||||
#import "aiPostProcess.h"
|
#import "postprocess.h"
|
||||||
#import "aiScene.h"
|
#import "scene.h"
|
||||||
|
#import "types.h"
|
||||||
|
|
||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
#import <OpenGL/OpenGL.h>
|
#import <OpenGL/OpenGL.h>
|
||||||
|
@ -29,7 +30,7 @@
|
||||||
|
|
||||||
// Assimp Stuff
|
// Assimp Stuff
|
||||||
aiScene* _scene;
|
aiScene* _scene;
|
||||||
struct aiVector3D scene_min, scene_max, scene_center;
|
aiVector3D scene_min, scene_max, scene_center;
|
||||||
double normalizedScale;
|
double normalizedScale;
|
||||||
|
|
||||||
// Our array of textures.
|
// Our array of textures.
|
||||||
|
@ -53,7 +54,7 @@
|
||||||
- (void) deleteGLResourcesInContext:(CGLContextObj)cgl_ctx;
|
- (void) deleteGLResourcesInContext:(CGLContextObj)cgl_ctx;
|
||||||
|
|
||||||
- (void) loadTexturesInContext:(CGLContextObj)cgl_ctx withModelPath:(NSString*) modelPath;
|
- (void) loadTexturesInContext:(CGLContextObj)cgl_ctx withModelPath:(NSString*) modelPath;
|
||||||
- (void) getBoundingBoxWithMinVector:(struct aiVector3D*) min maxVectr:(struct aiVector3D*) max;
|
- (void) getBoundingBoxWithMinVector:(aiVector3D*) min maxVectr:(aiVector3D*) max;
|
||||||
- (void) getBoundingBoxForNode:(const struct aiNode*)nd minVector:(struct aiVector3D*) min maxVector:(struct aiVector3D*) max matrix:(struct aiMatrix4x4*) trafo;
|
- (void) getBoundingBoxForNode:(const aiNode*)nd minVector:(aiVector3D*) min maxVector:(aiVector3D*) max matrix:(aiMatrix4x4*) trafo;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
// Copyright __MyCompanyName__ 2010 . All rights reserved.
|
// Copyright __MyCompanyName__ 2010 . All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import "aiConfig.h"
|
#import "cimport.h"
|
||||||
|
#import "config.h"
|
||||||
#import "MyDocument.h"
|
#import "MyDocument.h"
|
||||||
#import <OpenGL/CGLMacro.h>
|
#import <OpenGL/CGLMacro.h>
|
||||||
|
|
||||||
|
@ -16,7 +17,7 @@
|
||||||
#define aisgl_min(x,y) (x<y?x:y)
|
#define aisgl_min(x,y) (x<y?x:y)
|
||||||
#define aisgl_max(x,y) (y>x?y:x)
|
#define aisgl_max(x,y) (y>x?y:x)
|
||||||
|
|
||||||
static void color4_to_float4(const struct aiColor4D *c, float f[4])
|
static void color4_to_float4(const aiColor4D *c, float f[4])
|
||||||
{
|
{
|
||||||
f[0] = c->r;
|
f[0] = c->r;
|
||||||
f[1] = c->g;
|
f[1] = c->g;
|
||||||
|
@ -160,7 +161,8 @@ static CVReturn MyDisplayLinkCallback(CVDisplayLinkRef displayLink,const CVTimeS
|
||||||
// Load our new path.
|
// Load our new path.
|
||||||
|
|
||||||
// only ever give us triangles.
|
// only ever give us triangles.
|
||||||
aiSetImportPropertyInteger(AI_CONFIG_PP_SBP_REMOVE, aiPrimitiveType_LINE | aiPrimitiveType_POINT );
|
aiPropertyStore* props = aiCreatePropertyStore();
|
||||||
|
aiSetImportPropertyInteger(props, AI_CONFIG_PP_SBP_REMOVE, aiPrimitiveType_LINE | aiPrimitiveType_POINT );
|
||||||
|
|
||||||
NSUInteger aiPostProccesFlags;
|
NSUInteger aiPostProccesFlags;
|
||||||
|
|
||||||
|
@ -181,7 +183,9 @@ static CVReturn MyDisplayLinkCallback(CVDisplayLinkRef displayLink,const CVTimeS
|
||||||
}
|
}
|
||||||
|
|
||||||
// aiProcess_FlipUVs is needed for VAO / VBOs, not sure why.
|
// aiProcess_FlipUVs is needed for VAO / VBOs, not sure why.
|
||||||
_scene = (aiScene*) aiImportFile([[openPanel filename] cStringUsingEncoding:[NSString defaultCStringEncoding]], aiPostProccesFlags | aiProcess_Triangulate | aiProcess_FlipUVs | aiProcess_PreTransformVertices | 0 );
|
_scene = (aiScene*) aiImportFileExWithProperties([[openPanel filename] cStringUsingEncoding:[NSString defaultCStringEncoding]], aiPostProccesFlags | aiProcess_Triangulate | aiProcess_FlipUVs | aiProcess_PreTransformVertices | 0, NULL, props);
|
||||||
|
|
||||||
|
aiReleasePropertyStore(props);
|
||||||
|
|
||||||
if (_scene)
|
if (_scene)
|
||||||
{
|
{
|
||||||
|
@ -755,9 +759,9 @@ static CVReturn MyDisplayLinkCallback(CVDisplayLinkRef displayLink,const CVTimeS
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) getBoundingBoxWithMinVector:(struct aiVector3D*) min maxVectr:(struct aiVector3D*) max
|
- (void) getBoundingBoxWithMinVector:(aiVector3D*) min maxVectr:(aiVector3D*) max
|
||||||
{
|
{
|
||||||
struct aiMatrix4x4 trafo;
|
aiMatrix4x4 trafo;
|
||||||
aiIdentityMatrix4(&trafo);
|
aiIdentityMatrix4(&trafo);
|
||||||
|
|
||||||
min->x = min->y = min->z = 1e10f;
|
min->x = min->y = min->z = 1e10f;
|
||||||
|
@ -766,9 +770,9 @@ static CVReturn MyDisplayLinkCallback(CVDisplayLinkRef displayLink,const CVTimeS
|
||||||
[self getBoundingBoxForNode:_scene->mRootNode minVector:min maxVector:max matrix:&trafo];
|
[self getBoundingBoxForNode:_scene->mRootNode minVector:min maxVector:max matrix:&trafo];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) getBoundingBoxForNode:(const struct aiNode*)nd minVector:(struct aiVector3D*) min maxVector:(struct aiVector3D*) max matrix:(struct aiMatrix4x4*) trafo
|
- (void) getBoundingBoxForNode:(const aiNode*)nd minVector:(aiVector3D*) min maxVector:(aiVector3D*) max matrix:(aiMatrix4x4*) trafo
|
||||||
{
|
{
|
||||||
struct aiMatrix4x4 prev;
|
aiMatrix4x4 prev;
|
||||||
unsigned int n = 0, t;
|
unsigned int n = 0, t;
|
||||||
|
|
||||||
prev = *trafo;
|
prev = *trafo;
|
||||||
|
@ -776,10 +780,10 @@ static CVReturn MyDisplayLinkCallback(CVDisplayLinkRef displayLink,const CVTimeS
|
||||||
|
|
||||||
for (; n < nd->mNumMeshes; ++n)
|
for (; n < nd->mNumMeshes; ++n)
|
||||||
{
|
{
|
||||||
const struct aiMesh* mesh = _scene->mMeshes[nd->mMeshes[n]];
|
const aiMesh* mesh = _scene->mMeshes[nd->mMeshes[n]];
|
||||||
for (t = 0; t < mesh->mNumVertices; ++t)
|
for (t = 0; t < mesh->mNumVertices; ++t)
|
||||||
{
|
{
|
||||||
struct aiVector3D tmp = mesh->mVertices[t];
|
aiVector3D tmp = mesh->mVertices[t];
|
||||||
aiTransformVecByMatrix4(&tmp,trafo);
|
aiTransformVecByMatrix4(&tmp,trafo);
|
||||||
|
|
||||||
min->x = aisgl_min(min->x,tmp.x);
|
min->x = aisgl_min(min->x,tmp.x);
|
||||||
|
|
|
@ -9,11 +9,6 @@
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
1B0E9A901279ED43003108E7 /* libassimp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B0E9A8F1279ED43003108E7 /* libassimp.a */; };
|
1B0E9A901279ED43003108E7 /* libassimp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B0E9A8F1279ED43003108E7 /* libassimp.a */; };
|
||||||
1B0E9A951279EDCD003108E7 /* ModelLoaderHelperClasses.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B0E9A941279EDCD003108E7 /* ModelLoaderHelperClasses.mm */; };
|
1B0E9A951279EDCD003108E7 /* ModelLoaderHelperClasses.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B0E9A941279EDCD003108E7 /* ModelLoaderHelperClasses.mm */; };
|
||||||
1B0E9AF51279EFCC003108E7 /* aiColor4D.inl in Resources */ = {isa = PBXBuildFile; fileRef = 1B0E9AD71279EFCC003108E7 /* aiColor4D.inl */; };
|
|
||||||
1B0E9AF61279EFCC003108E7 /* aiMaterial.inl in Resources */ = {isa = PBXBuildFile; fileRef = 1B0E9ADD1279EFCC003108E7 /* aiMaterial.inl */; };
|
|
||||||
1B0E9AF71279EFCC003108E7 /* aiMatrix3x3.inl in Resources */ = {isa = PBXBuildFile; fileRef = 1B0E9ADF1279EFCC003108E7 /* aiMatrix3x3.inl */; };
|
|
||||||
1B0E9AF81279EFCC003108E7 /* aiMatrix4x4.inl in Resources */ = {isa = PBXBuildFile; fileRef = 1B0E9AE11279EFCC003108E7 /* aiMatrix4x4.inl */; };
|
|
||||||
1B0E9AF91279EFCC003108E7 /* aiVector3D.inl in Resources */ = {isa = PBXBuildFile; fileRef = 1B0E9AEA1279EFCC003108E7 /* aiVector3D.inl */; };
|
|
||||||
1B0E9B1A1279F107003108E7 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B0E9B191279F107003108E7 /* libz.dylib */; };
|
1B0E9B1A1279F107003108E7 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B0E9B191279F107003108E7 /* libz.dylib */; };
|
||||||
1BDF446B127772AF00D3E723 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BDF446A127772AF00D3E723 /* OpenGL.framework */; };
|
1BDF446B127772AF00D3E723 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BDF446A127772AF00D3E723 /* OpenGL.framework */; };
|
||||||
1BDF446F127772AF00D3E723 /* Quartz.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BDF446E127772AF00D3E723 /* Quartz.framework */; };
|
1BDF446F127772AF00D3E723 /* Quartz.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BDF446E127772AF00D3E723 /* Quartz.framework */; };
|
||||||
|
@ -25,6 +20,13 @@
|
||||||
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165FFE840EACC02AAC07 /* InfoPlist.strings */; };
|
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165FFE840EACC02AAC07 /* InfoPlist.strings */; };
|
||||||
8D15AC310486D014006FF6A4 /* MyDocument.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A37F4ACFDCFA73011CA2CEA /* MyDocument.mm */; settings = {ATTRIBUTES = (); }; };
|
8D15AC310486D014006FF6A4 /* MyDocument.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A37F4ACFDCFA73011CA2CEA /* MyDocument.mm */; settings = {ATTRIBUTES = (); }; };
|
||||||
8D15AC320486D014006FF6A4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A37F4B0FDCFA73011CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
|
8D15AC320486D014006FF6A4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A37F4B0FDCFA73011CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
|
||||||
|
C75BB4F617EE0B64004F0260 /* color4.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB4F117EE0B64004F0260 /* color4.inl */; };
|
||||||
|
C75BB4F717EE0B64004F0260 /* quaternion.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB4F517EE0B64004F0260 /* quaternion.inl */; };
|
||||||
|
C75BB51417EE0B75004F0260 /* material.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB50317EE0B75004F0260 /* material.inl */; };
|
||||||
|
C75BB51517EE0B75004F0260 /* matrix3x3.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB50517EE0B75004F0260 /* matrix3x3.inl */; };
|
||||||
|
C75BB51617EE0B75004F0260 /* matrix4x4.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB50717EE0B75004F0260 /* matrix4x4.inl */; };
|
||||||
|
C75BB51717EE0B75004F0260 /* vector2.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB51017EE0B75004F0260 /* vector2.inl */; };
|
||||||
|
C75BB51817EE0B75004F0260 /* vector3.inl in Resources */ = {isa = PBXBuildFile; fileRef = C75BB51217EE0B75004F0260 /* vector3.inl */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
|
@ -33,40 +35,6 @@
|
||||||
1B0E9A8F1279ED43003108E7 /* libassimp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libassimp.a; sourceTree = "<group>"; };
|
1B0E9A8F1279ED43003108E7 /* libassimp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libassimp.a; sourceTree = "<group>"; };
|
||||||
1B0E9A931279EDCD003108E7 /* ModelLoaderHelperClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModelLoaderHelperClasses.h; sourceTree = "<group>"; };
|
1B0E9A931279EDCD003108E7 /* ModelLoaderHelperClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModelLoaderHelperClasses.h; sourceTree = "<group>"; };
|
||||||
1B0E9A941279EDCD003108E7 /* ModelLoaderHelperClasses.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ModelLoaderHelperClasses.mm; sourceTree = "<group>"; };
|
1B0E9A941279EDCD003108E7 /* ModelLoaderHelperClasses.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ModelLoaderHelperClasses.mm; sourceTree = "<group>"; };
|
||||||
1B0E9AD31279EFCC003108E7 /* aiAnim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiAnim.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD41279EFCC003108E7 /* aiAssert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiAssert.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD51279EFCC003108E7 /* aiCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiCamera.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD61279EFCC003108E7 /* aiColor4D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiColor4D.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD71279EFCC003108E7 /* aiColor4D.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aiColor4D.inl; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD81279EFCC003108E7 /* aiConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiConfig.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AD91279EFCC003108E7 /* aiDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiDefines.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADA1279EFCC003108E7 /* aiFileIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiFileIO.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADB1279EFCC003108E7 /* aiLight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiLight.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADC1279EFCC003108E7 /* aiMaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiMaterial.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADD1279EFCC003108E7 /* aiMaterial.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aiMaterial.inl; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADE1279EFCC003108E7 /* aiMatrix3x3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiMatrix3x3.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9ADF1279EFCC003108E7 /* aiMatrix3x3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aiMatrix3x3.inl; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE01279EFCC003108E7 /* aiMatrix4x4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiMatrix4x4.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE11279EFCC003108E7 /* aiMatrix4x4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aiMatrix4x4.inl; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE21279EFCC003108E7 /* aiMesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiMesh.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE31279EFCC003108E7 /* aiPostProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiPostProcess.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE41279EFCC003108E7 /* aiQuaternion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiQuaternion.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE51279EFCC003108E7 /* aiScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiScene.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE61279EFCC003108E7 /* aiTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiTexture.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE71279EFCC003108E7 /* aiTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiTypes.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE81279EFCC003108E7 /* aiVector2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiVector2D.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AE91279EFCC003108E7 /* aiVector3D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiVector3D.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AEA1279EFCC003108E7 /* aiVector3D.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aiVector3D.inl; sourceTree = "<group>"; };
|
|
||||||
1B0E9AEB1279EFCC003108E7 /* aiVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aiVersion.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AEC1279EFCC003108E7 /* assimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assimp.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AED1279EFCC003108E7 /* assimp.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = assimp.hpp; sourceTree = "<group>"; };
|
|
||||||
1B0E9AEE1279EFCC003108E7 /* DefaultLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DefaultLogger.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AEF1279EFCC003108E7 /* IOStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStream.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AF01279EFCC003108E7 /* IOSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSystem.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AF11279EFCC003108E7 /* Logger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Logger.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AF21279EFCC003108E7 /* LogStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LogStream.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AF31279EFCC003108E7 /* NullLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NullLogger.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AF41279EFCC003108E7 /* ProgressHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProgressHandler.h; sourceTree = "<group>"; };
|
|
||||||
1B0E9AFD1279F006003108E7 /* poppack1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = poppack1.h; path = "/Users/vade/Asset Import/include/Compiler/poppack1.h"; sourceTree = "<absolute>"; };
|
1B0E9AFD1279F006003108E7 /* poppack1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = poppack1.h; path = "/Users/vade/Asset Import/include/Compiler/poppack1.h"; sourceTree = "<absolute>"; };
|
||||||
1B0E9AFE1279F006003108E7 /* pushpack1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pushpack1.h; path = "/Users/vade/Asset Import/include/Compiler/pushpack1.h"; sourceTree = "<absolute>"; };
|
1B0E9AFE1279F006003108E7 /* pushpack1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pushpack1.h; path = "/Users/vade/Asset Import/include/Compiler/pushpack1.h"; sourceTree = "<absolute>"; };
|
||||||
1B0E9B191279F107003108E7 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
1B0E9B191279F107003108E7 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
||||||
|
@ -85,6 +53,46 @@
|
||||||
7788DA0506752A1600599AAD /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
|
7788DA0506752A1600599AAD /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
|
||||||
8D15AC360486D014006FF6A4 /* SimpleAssimpViewX-Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist.xml; fileEncoding = 4; path = "SimpleAssimpViewX-Info.plist"; sourceTree = "<group>"; };
|
8D15AC360486D014006FF6A4 /* SimpleAssimpViewX-Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist.xml; fileEncoding = 4; path = "SimpleAssimpViewX-Info.plist"; sourceTree = "<group>"; };
|
||||||
8D15AC370486D014006FF6A4 /* SimpleAssimpViewX.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleAssimpViewX.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
8D15AC370486D014006FF6A4 /* SimpleAssimpViewX.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleAssimpViewX.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
|
C75BB4EA17EE0B64004F0260 /* ai_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ai_assert.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4EB17EE0B64004F0260 /* anim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = anim.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4EC17EE0B64004F0260 /* camera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camera.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4ED17EE0B64004F0260 /* cexport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cexport.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4EE17EE0B64004F0260 /* cfileio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cfileio.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4EF17EE0B64004F0260 /* cimport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cimport.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4F017EE0B64004F0260 /* color4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = color4.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4F117EE0B64004F0260 /* color4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = color4.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB4F217EE0B64004F0260 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4F317EE0B64004F0260 /* metadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metadata.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4F417EE0B64004F0260 /* NullLogger.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = NullLogger.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4F517EE0B64004F0260 /* quaternion.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = quaternion.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB4F817EE0B75004F0260 /* DefaultLogger.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = DefaultLogger.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4F917EE0B75004F0260 /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = defs.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4FA17EE0B75004F0260 /* Exporter.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Exporter.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4FB17EE0B75004F0260 /* Importer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Importer.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4FC17EE0B75004F0260 /* importerdesc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importerdesc.h; sourceTree = "<group>"; };
|
||||||
|
C75BB4FD17EE0B75004F0260 /* IOStream.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = IOStream.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4FE17EE0B75004F0260 /* IOSystem.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = IOSystem.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB4FF17EE0B75004F0260 /* light.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = light.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50017EE0B75004F0260 /* Logger.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Logger.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB50117EE0B75004F0260 /* LogStream.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = LogStream.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB50217EE0B75004F0260 /* material.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = material.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50317EE0B75004F0260 /* material.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = material.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB50417EE0B75004F0260 /* matrix3x3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = matrix3x3.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50517EE0B75004F0260 /* matrix3x3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix3x3.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB50617EE0B75004F0260 /* matrix4x4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = matrix4x4.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50717EE0B75004F0260 /* matrix4x4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix4x4.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB50817EE0B75004F0260 /* mesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mesh.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50917EE0B75004F0260 /* postprocess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = postprocess.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50A17EE0B75004F0260 /* ProgressHandler.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ProgressHandler.hpp; sourceTree = "<group>"; };
|
||||||
|
C75BB50B17EE0B75004F0260 /* quaternion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quaternion.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50C17EE0B75004F0260 /* scene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scene.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50D17EE0B75004F0260 /* texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50E17EE0B75004F0260 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
|
||||||
|
C75BB50F17EE0B75004F0260 /* vector2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector2.h; sourceTree = "<group>"; };
|
||||||
|
C75BB51017EE0B75004F0260 /* vector2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector2.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB51117EE0B75004F0260 /* vector3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector3.h; sourceTree = "<group>"; };
|
||||||
|
C75BB51217EE0B75004F0260 /* vector3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector3.inl; sourceTree = "<group>"; };
|
||||||
|
C75BB51317EE0B75004F0260 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
|
@ -134,40 +142,46 @@
|
||||||
1B0E9AD21279EFCC003108E7 /* include */ = {
|
1B0E9AD21279EFCC003108E7 /* include */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1B0E9AD31279EFCC003108E7 /* aiAnim.h */,
|
C75BB4F817EE0B75004F0260 /* DefaultLogger.hpp */,
|
||||||
1B0E9AD41279EFCC003108E7 /* aiAssert.h */,
|
C75BB4F917EE0B75004F0260 /* defs.h */,
|
||||||
1B0E9AD51279EFCC003108E7 /* aiCamera.h */,
|
C75BB4FA17EE0B75004F0260 /* Exporter.hpp */,
|
||||||
1B0E9AD61279EFCC003108E7 /* aiColor4D.h */,
|
C75BB4FB17EE0B75004F0260 /* Importer.hpp */,
|
||||||
1B0E9AD71279EFCC003108E7 /* aiColor4D.inl */,
|
C75BB4FC17EE0B75004F0260 /* importerdesc.h */,
|
||||||
1B0E9AD81279EFCC003108E7 /* aiConfig.h */,
|
C75BB4FD17EE0B75004F0260 /* IOStream.hpp */,
|
||||||
1B0E9AD91279EFCC003108E7 /* aiDefines.h */,
|
C75BB4FE17EE0B75004F0260 /* IOSystem.hpp */,
|
||||||
1B0E9ADA1279EFCC003108E7 /* aiFileIO.h */,
|
C75BB4FF17EE0B75004F0260 /* light.h */,
|
||||||
1B0E9ADB1279EFCC003108E7 /* aiLight.h */,
|
C75BB50017EE0B75004F0260 /* Logger.hpp */,
|
||||||
1B0E9ADC1279EFCC003108E7 /* aiMaterial.h */,
|
C75BB50117EE0B75004F0260 /* LogStream.hpp */,
|
||||||
1B0E9ADD1279EFCC003108E7 /* aiMaterial.inl */,
|
C75BB50217EE0B75004F0260 /* material.h */,
|
||||||
1B0E9ADE1279EFCC003108E7 /* aiMatrix3x3.h */,
|
C75BB50317EE0B75004F0260 /* material.inl */,
|
||||||
1B0E9ADF1279EFCC003108E7 /* aiMatrix3x3.inl */,
|
C75BB50417EE0B75004F0260 /* matrix3x3.h */,
|
||||||
1B0E9AE01279EFCC003108E7 /* aiMatrix4x4.h */,
|
C75BB50517EE0B75004F0260 /* matrix3x3.inl */,
|
||||||
1B0E9AE11279EFCC003108E7 /* aiMatrix4x4.inl */,
|
C75BB50617EE0B75004F0260 /* matrix4x4.h */,
|
||||||
1B0E9AE21279EFCC003108E7 /* aiMesh.h */,
|
C75BB50717EE0B75004F0260 /* matrix4x4.inl */,
|
||||||
1B0E9AE31279EFCC003108E7 /* aiPostProcess.h */,
|
C75BB50817EE0B75004F0260 /* mesh.h */,
|
||||||
1B0E9AE41279EFCC003108E7 /* aiQuaternion.h */,
|
C75BB50917EE0B75004F0260 /* postprocess.h */,
|
||||||
1B0E9AE51279EFCC003108E7 /* aiScene.h */,
|
C75BB50A17EE0B75004F0260 /* ProgressHandler.hpp */,
|
||||||
1B0E9AE61279EFCC003108E7 /* aiTexture.h */,
|
C75BB50B17EE0B75004F0260 /* quaternion.h */,
|
||||||
1B0E9AE71279EFCC003108E7 /* aiTypes.h */,
|
C75BB50C17EE0B75004F0260 /* scene.h */,
|
||||||
1B0E9AE81279EFCC003108E7 /* aiVector2D.h */,
|
C75BB50D17EE0B75004F0260 /* texture.h */,
|
||||||
1B0E9AE91279EFCC003108E7 /* aiVector3D.h */,
|
C75BB50E17EE0B75004F0260 /* types.h */,
|
||||||
1B0E9AEA1279EFCC003108E7 /* aiVector3D.inl */,
|
C75BB50F17EE0B75004F0260 /* vector2.h */,
|
||||||
1B0E9AEB1279EFCC003108E7 /* aiVersion.h */,
|
C75BB51017EE0B75004F0260 /* vector2.inl */,
|
||||||
1B0E9AEC1279EFCC003108E7 /* assimp.h */,
|
C75BB51117EE0B75004F0260 /* vector3.h */,
|
||||||
1B0E9AED1279EFCC003108E7 /* assimp.hpp */,
|
C75BB51217EE0B75004F0260 /* vector3.inl */,
|
||||||
1B0E9AEE1279EFCC003108E7 /* DefaultLogger.h */,
|
C75BB51317EE0B75004F0260 /* version.h */,
|
||||||
1B0E9AEF1279EFCC003108E7 /* IOStream.h */,
|
C75BB4EA17EE0B64004F0260 /* ai_assert.h */,
|
||||||
1B0E9AF01279EFCC003108E7 /* IOSystem.h */,
|
C75BB4EB17EE0B64004F0260 /* anim.h */,
|
||||||
1B0E9AF11279EFCC003108E7 /* Logger.h */,
|
C75BB4EC17EE0B64004F0260 /* camera.h */,
|
||||||
1B0E9AF21279EFCC003108E7 /* LogStream.h */,
|
C75BB4ED17EE0B64004F0260 /* cexport.h */,
|
||||||
1B0E9AF31279EFCC003108E7 /* NullLogger.h */,
|
C75BB4EE17EE0B64004F0260 /* cfileio.h */,
|
||||||
1B0E9AF41279EFCC003108E7 /* ProgressHandler.h */,
|
C75BB4EF17EE0B64004F0260 /* cimport.h */,
|
||||||
|
C75BB4F017EE0B64004F0260 /* color4.h */,
|
||||||
|
C75BB4F117EE0B64004F0260 /* color4.inl */,
|
||||||
|
C75BB4F217EE0B64004F0260 /* config.h */,
|
||||||
|
C75BB4F317EE0B64004F0260 /* metadata.h */,
|
||||||
|
C75BB4F417EE0B64004F0260 /* NullLogger.hpp */,
|
||||||
|
C75BB4F517EE0B64004F0260 /* quaternion.inl */,
|
||||||
1B0E9AFC1279F006003108E7 /* Compiler */,
|
1B0E9AFC1279F006003108E7 /* Compiler */,
|
||||||
);
|
);
|
||||||
path = include;
|
path = include;
|
||||||
|
@ -295,11 +309,13 @@
|
||||||
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */,
|
8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */,
|
||||||
2F7446AB0DB6BCF400F9684A /* MainMenu.xib in Resources */,
|
2F7446AB0DB6BCF400F9684A /* MainMenu.xib in Resources */,
|
||||||
2F7446AC0DB6BCF400F9684A /* MyDocument.xib in Resources */,
|
2F7446AC0DB6BCF400F9684A /* MyDocument.xib in Resources */,
|
||||||
1B0E9AF51279EFCC003108E7 /* aiColor4D.inl in Resources */,
|
C75BB4F617EE0B64004F0260 /* color4.inl in Resources */,
|
||||||
1B0E9AF61279EFCC003108E7 /* aiMaterial.inl in Resources */,
|
C75BB4F717EE0B64004F0260 /* quaternion.inl in Resources */,
|
||||||
1B0E9AF71279EFCC003108E7 /* aiMatrix3x3.inl in Resources */,
|
C75BB51417EE0B75004F0260 /* material.inl in Resources */,
|
||||||
1B0E9AF81279EFCC003108E7 /* aiMatrix4x4.inl in Resources */,
|
C75BB51517EE0B75004F0260 /* matrix3x3.inl in Resources */,
|
||||||
1B0E9AF91279EFCC003108E7 /* aiVector3D.inl in Resources */,
|
C75BB51617EE0B75004F0260 /* matrix4x4.inl in Resources */,
|
||||||
|
C75BB51717EE0B75004F0260 /* vector2.inl in Resources */,
|
||||||
|
C75BB51817EE0B75004F0260 /* vector3.inl in Resources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
@ -413,7 +429,7 @@
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
PREBINDING = NO;
|
PREBINDING = NO;
|
||||||
SDKROOT = macosx10.6;
|
SDKROOT = macosx;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -425,7 +441,7 @@
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
PREBINDING = NO;
|
PREBINDING = NO;
|
||||||
SDKROOT = macosx10.6;
|
SDKROOT = macosx;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1487,7 +1487,6 @@
|
||||||
B919758A163AEA54009C397B /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8B9E1543268400E63FFE /* version.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
B919758A163AEA54009C397B /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8B9E1543268400E63FFE /* version.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
||||||
B919758B163AEA54009C397B /* OgreImporter.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8C36154328B600E63FFE /* OgreImporter.hpp */; };
|
B919758B163AEA54009C397B /* OgreImporter.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8C36154328B600E63FFE /* OgreImporter.hpp */; };
|
||||||
B919758C163AEA54009C397B /* OgreXmlHelper.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8C3A154328B600E63FFE /* OgreXmlHelper.hpp */; };
|
B919758C163AEA54009C397B /* OgreXmlHelper.hpp in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8C3A154328B600E63FFE /* OgreXmlHelper.hpp */; };
|
||||||
B9197595163AEA54009C397B /* M3Importer.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F2715436207000682F3 /* M3Importer.h */; };
|
|
||||||
B9197596163AEA54009C397B /* PlyExporter.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F3115436269000682F3 /* PlyExporter.h */; };
|
B9197596163AEA54009C397B /* PlyExporter.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F3115436269000682F3 /* PlyExporter.h */; };
|
||||||
B919759C163AEA54009C397B /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = F960704B154366AB004D91DD /* crc32.h */; };
|
B919759C163AEA54009C397B /* crc32.h in Headers */ = {isa = PBXBuildFile; fileRef = F960704B154366AB004D91DD /* crc32.h */; };
|
||||||
B919759D163AEA54009C397B /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = F960704D154366AB004D91DD /* deflate.h */; };
|
B919759D163AEA54009C397B /* deflate.h in Headers */ = {isa = PBXBuildFile; fileRef = F960704D154366AB004D91DD /* deflate.h */; };
|
||||||
|
@ -1565,7 +1564,6 @@
|
||||||
B919761A163AEA54009C397B /* OgreMaterial.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C37154328B600E63FFE /* OgreMaterial.cpp */; };
|
B919761A163AEA54009C397B /* OgreMaterial.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C37154328B600E63FFE /* OgreMaterial.cpp */; };
|
||||||
B919761B163AEA54009C397B /* OgreMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C38154328B600E63FFE /* OgreMesh.cpp */; };
|
B919761B163AEA54009C397B /* OgreMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C38154328B600E63FFE /* OgreMesh.cpp */; };
|
||||||
B919761C163AEA54009C397B /* OgreSkeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C39154328B600E63FFE /* OgreSkeleton.cpp */; };
|
B919761C163AEA54009C397B /* OgreSkeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9BA8C39154328B600E63FFE /* OgreSkeleton.cpp */; };
|
||||||
B919761F163AEA54009C397B /* M3Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F2615436207000682F3 /* M3Importer.cpp */; };
|
|
||||||
B9197620163AEA54009C397B /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
B9197620163AEA54009C397B /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
||||||
B9197625163AEA54009C397B /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = F9607047154366AB004D91DD /* adler32.c */; };
|
B9197625163AEA54009C397B /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = F9607047154366AB004D91DD /* adler32.c */; };
|
||||||
B9197626163AEA54009C397B /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = F9607049154366AB004D91DD /* compress.c */; };
|
B9197626163AEA54009C397B /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = F9607049154366AB004D91DD /* compress.c */; };
|
||||||
|
@ -1830,14 +1828,6 @@
|
||||||
F97BA03715439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
F97BA03715439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
||||||
F97BA03815439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
F97BA03815439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
||||||
F97BA03915439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
F97BA03915439DB3009EB9DD /* ai_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = F97BA03515439DB3009EB9DD /* ai_assert.h */; };
|
||||||
F99A9F2815436207000682F3 /* M3Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F2615436207000682F3 /* M3Importer.cpp */; };
|
|
||||||
F99A9F2915436207000682F3 /* M3Importer.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F2715436207000682F3 /* M3Importer.h */; };
|
|
||||||
F99A9F2A15436207000682F3 /* M3Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F2615436207000682F3 /* M3Importer.cpp */; };
|
|
||||||
F99A9F2B15436207000682F3 /* M3Importer.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F2715436207000682F3 /* M3Importer.h */; };
|
|
||||||
F99A9F2C15436207000682F3 /* M3Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F2615436207000682F3 /* M3Importer.cpp */; };
|
|
||||||
F99A9F2D15436207000682F3 /* M3Importer.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F2715436207000682F3 /* M3Importer.h */; };
|
|
||||||
F99A9F2E15436207000682F3 /* M3Importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F2615436207000682F3 /* M3Importer.cpp */; };
|
|
||||||
F99A9F2F15436207000682F3 /* M3Importer.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F2715436207000682F3 /* M3Importer.h */; };
|
|
||||||
F99A9F3215436269000682F3 /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
F99A9F3215436269000682F3 /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
||||||
F99A9F3315436269000682F3 /* PlyExporter.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F3115436269000682F3 /* PlyExporter.h */; };
|
F99A9F3315436269000682F3 /* PlyExporter.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A9F3115436269000682F3 /* PlyExporter.h */; };
|
||||||
F99A9F3415436269000682F3 /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
F99A9F3415436269000682F3 /* PlyExporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99A9F3015436269000682F3 /* PlyExporter.cpp */; };
|
||||||
|
@ -2369,8 +2359,6 @@
|
||||||
F96070DD1543675E004D91DD /* sweep_context.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sweep_context.cc; sourceTree = "<group>"; };
|
F96070DD1543675E004D91DD /* sweep_context.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sweep_context.cc; sourceTree = "<group>"; };
|
||||||
F96070DE1543675E004D91DD /* sweep_context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sweep_context.h; sourceTree = "<group>"; };
|
F96070DE1543675E004D91DD /* sweep_context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sweep_context.h; sourceTree = "<group>"; };
|
||||||
F97BA03515439DB3009EB9DD /* ai_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ai_assert.h; sourceTree = "<group>"; };
|
F97BA03515439DB3009EB9DD /* ai_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ai_assert.h; sourceTree = "<group>"; };
|
||||||
F99A9F2615436207000682F3 /* M3Importer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = M3Importer.cpp; path = ../../code/M3Importer.cpp; sourceTree = SOURCE_ROOT; };
|
|
||||||
F99A9F2715436207000682F3 /* M3Importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M3Importer.h; path = ../../code/M3Importer.h; sourceTree = SOURCE_ROOT; };
|
|
||||||
F99A9F3015436269000682F3 /* PlyExporter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlyExporter.cpp; sourceTree = "<group>"; };
|
F99A9F3015436269000682F3 /* PlyExporter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlyExporter.cpp; sourceTree = "<group>"; };
|
||||||
F99A9F3115436269000682F3 /* PlyExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlyExporter.h; sourceTree = "<group>"; };
|
F99A9F3115436269000682F3 /* PlyExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlyExporter.h; sourceTree = "<group>"; };
|
||||||
F9BA8B751543268400E63FFE /* anim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = anim.h; sourceTree = "<group>"; };
|
F9BA8B751543268400E63FFE /* anim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = anim.h; sourceTree = "<group>"; };
|
||||||
|
@ -3173,7 +3161,6 @@
|
||||||
F90BAFD40F5DD8F200124155 /* IRR */,
|
F90BAFD40F5DD8F200124155 /* IRR */,
|
||||||
3AB8A3A80E50D5F400606590 /* LWO */,
|
3AB8A3A80E50D5F400606590 /* LWO */,
|
||||||
7411B15811416D6600BCD793 /* LWS */,
|
7411B15811416D6600BCD793 /* LWS */,
|
||||||
F99A9F21154361F8000682F3 /* M3 */,
|
|
||||||
3AF45B870E4B74DA00207D74 /* MD2 */,
|
3AF45B870E4B74DA00207D74 /* MD2 */,
|
||||||
3AF45B880E4B751000207D74 /* MD3 */,
|
3AF45B880E4B751000207D74 /* MD3 */,
|
||||||
3AF45B8A0E4B755E00207D74 /* MD5 */,
|
3AF45B8A0E4B755E00207D74 /* MD5 */,
|
||||||
|
@ -3309,15 +3296,6 @@
|
||||||
name = IFC;
|
name = IFC;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
F99A9F21154361F8000682F3 /* M3 */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
F99A9F2615436207000682F3 /* M3Importer.cpp */,
|
|
||||||
F99A9F2715436207000682F3 /* M3Importer.h */,
|
|
||||||
);
|
|
||||||
name = M3;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
F99A9F5315436318000682F3 /* STEP */ = {
|
F99A9F5315436318000682F3 /* STEP */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
@ -3499,7 +3477,6 @@
|
||||||
F9BA8C041543268400E63FFE /* version.h in Headers */,
|
F9BA8C041543268400E63FFE /* version.h in Headers */,
|
||||||
F9BA8C48154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
F9BA8C48154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
||||||
F9BA8C4C154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
F9BA8C4C154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
||||||
F99A9F2D15436207000682F3 /* M3Importer.h in Headers */,
|
|
||||||
F99A9F3715436269000682F3 /* PlyExporter.h in Headers */,
|
F99A9F3715436269000682F3 /* PlyExporter.h in Headers */,
|
||||||
F9607088154366AB004D91DD /* crc32.h in Headers */,
|
F9607088154366AB004D91DD /* crc32.h in Headers */,
|
||||||
F960708A154366AB004D91DD /* deflate.h in Headers */,
|
F960708A154366AB004D91DD /* deflate.h in Headers */,
|
||||||
|
@ -3748,7 +3725,6 @@
|
||||||
F9BA8C261543268400E63FFE /* version.h in Headers */,
|
F9BA8C261543268400E63FFE /* version.h in Headers */,
|
||||||
F9BA8C4E154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
F9BA8C4E154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
||||||
F9BA8C52154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
F9BA8C52154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
||||||
F99A9F2F15436207000682F3 /* M3Importer.h in Headers */,
|
|
||||||
F99A9F3915436269000682F3 /* PlyExporter.h in Headers */,
|
F99A9F3915436269000682F3 /* PlyExporter.h in Headers */,
|
||||||
F960709C154366AB004D91DD /* crc32.h in Headers */,
|
F960709C154366AB004D91DD /* crc32.h in Headers */,
|
||||||
F960709E154366AB004D91DD /* deflate.h in Headers */,
|
F960709E154366AB004D91DD /* deflate.h in Headers */,
|
||||||
|
@ -3997,7 +3973,6 @@
|
||||||
B919758A163AEA54009C397B /* version.h in Headers */,
|
B919758A163AEA54009C397B /* version.h in Headers */,
|
||||||
B919758B163AEA54009C397B /* OgreImporter.hpp in Headers */,
|
B919758B163AEA54009C397B /* OgreImporter.hpp in Headers */,
|
||||||
B919758C163AEA54009C397B /* OgreXmlHelper.hpp in Headers */,
|
B919758C163AEA54009C397B /* OgreXmlHelper.hpp in Headers */,
|
||||||
B9197595163AEA54009C397B /* M3Importer.h in Headers */,
|
|
||||||
B9197596163AEA54009C397B /* PlyExporter.h in Headers */,
|
B9197596163AEA54009C397B /* PlyExporter.h in Headers */,
|
||||||
B919759C163AEA54009C397B /* crc32.h in Headers */,
|
B919759C163AEA54009C397B /* crc32.h in Headers */,
|
||||||
B919759D163AEA54009C397B /* deflate.h in Headers */,
|
B919759D163AEA54009C397B /* deflate.h in Headers */,
|
||||||
|
@ -4246,7 +4221,6 @@
|
||||||
F9BA8BC01543268400E63FFE /* version.h in Headers */,
|
F9BA8BC01543268400E63FFE /* version.h in Headers */,
|
||||||
F9BA8C3C154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
F9BA8C3C154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
||||||
F9BA8C40154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
F9BA8C40154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
||||||
F99A9F2915436207000682F3 /* M3Importer.h in Headers */,
|
|
||||||
F99A9F3315436269000682F3 /* PlyExporter.h in Headers */,
|
F99A9F3315436269000682F3 /* PlyExporter.h in Headers */,
|
||||||
F9607060154366AB004D91DD /* crc32.h in Headers */,
|
F9607060154366AB004D91DD /* crc32.h in Headers */,
|
||||||
F9607062154366AB004D91DD /* deflate.h in Headers */,
|
F9607062154366AB004D91DD /* deflate.h in Headers */,
|
||||||
|
@ -4495,7 +4469,6 @@
|
||||||
F9BA8BE21543268400E63FFE /* version.h in Headers */,
|
F9BA8BE21543268400E63FFE /* version.h in Headers */,
|
||||||
F9BA8C42154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
F9BA8C42154328B600E63FFE /* OgreImporter.hpp in Headers */,
|
||||||
F9BA8C46154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
F9BA8C46154328B600E63FFE /* OgreXmlHelper.hpp in Headers */,
|
||||||
F99A9F2B15436207000682F3 /* M3Importer.h in Headers */,
|
|
||||||
F99A9F3515436269000682F3 /* PlyExporter.h in Headers */,
|
F99A9F3515436269000682F3 /* PlyExporter.h in Headers */,
|
||||||
F9607074154366AB004D91DD /* crc32.h in Headers */,
|
F9607074154366AB004D91DD /* crc32.h in Headers */,
|
||||||
F9607076154366AB004D91DD /* deflate.h in Headers */,
|
F9607076154366AB004D91DD /* deflate.h in Headers */,
|
||||||
|
@ -4815,7 +4788,6 @@
|
||||||
F9BA8C49154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
F9BA8C49154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
||||||
F9BA8C4A154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
F9BA8C4A154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
||||||
F9BA8C4B154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
F9BA8C4B154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
||||||
F99A9F2C15436207000682F3 /* M3Importer.cpp in Sources */,
|
|
||||||
F99A9F3615436269000682F3 /* PlyExporter.cpp in Sources */,
|
F99A9F3615436269000682F3 /* PlyExporter.cpp in Sources */,
|
||||||
F9607085154366AB004D91DD /* adler32.c in Sources */,
|
F9607085154366AB004D91DD /* adler32.c in Sources */,
|
||||||
F9607086154366AB004D91DD /* compress.c in Sources */,
|
F9607086154366AB004D91DD /* compress.c in Sources */,
|
||||||
|
@ -4978,7 +4950,6 @@
|
||||||
F9BA8C4F154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
F9BA8C4F154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
||||||
F9BA8C50154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
F9BA8C50154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
||||||
F9BA8C51154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
F9BA8C51154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
||||||
F99A9F2E15436207000682F3 /* M3Importer.cpp in Sources */,
|
|
||||||
F99A9F3815436269000682F3 /* PlyExporter.cpp in Sources */,
|
F99A9F3815436269000682F3 /* PlyExporter.cpp in Sources */,
|
||||||
F9607099154366AB004D91DD /* adler32.c in Sources */,
|
F9607099154366AB004D91DD /* adler32.c in Sources */,
|
||||||
F960709A154366AB004D91DD /* compress.c in Sources */,
|
F960709A154366AB004D91DD /* compress.c in Sources */,
|
||||||
|
@ -5141,7 +5112,6 @@
|
||||||
B919761A163AEA54009C397B /* OgreMaterial.cpp in Sources */,
|
B919761A163AEA54009C397B /* OgreMaterial.cpp in Sources */,
|
||||||
B919761B163AEA54009C397B /* OgreMesh.cpp in Sources */,
|
B919761B163AEA54009C397B /* OgreMesh.cpp in Sources */,
|
||||||
B919761C163AEA54009C397B /* OgreSkeleton.cpp in Sources */,
|
B919761C163AEA54009C397B /* OgreSkeleton.cpp in Sources */,
|
||||||
B919761F163AEA54009C397B /* M3Importer.cpp in Sources */,
|
|
||||||
B9197620163AEA54009C397B /* PlyExporter.cpp in Sources */,
|
B9197620163AEA54009C397B /* PlyExporter.cpp in Sources */,
|
||||||
B9197625163AEA54009C397B /* adler32.c in Sources */,
|
B9197625163AEA54009C397B /* adler32.c in Sources */,
|
||||||
B9197626163AEA54009C397B /* compress.c in Sources */,
|
B9197626163AEA54009C397B /* compress.c in Sources */,
|
||||||
|
@ -5304,7 +5274,6 @@
|
||||||
F9BA8C3D154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
F9BA8C3D154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
||||||
F9BA8C3E154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
F9BA8C3E154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
||||||
F9BA8C3F154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
F9BA8C3F154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
||||||
F99A9F2815436207000682F3 /* M3Importer.cpp in Sources */,
|
|
||||||
F99A9F3215436269000682F3 /* PlyExporter.cpp in Sources */,
|
F99A9F3215436269000682F3 /* PlyExporter.cpp in Sources */,
|
||||||
F960705D154366AB004D91DD /* adler32.c in Sources */,
|
F960705D154366AB004D91DD /* adler32.c in Sources */,
|
||||||
F960705E154366AB004D91DD /* compress.c in Sources */,
|
F960705E154366AB004D91DD /* compress.c in Sources */,
|
||||||
|
@ -5467,7 +5436,6 @@
|
||||||
F9BA8C43154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
F9BA8C43154328B600E63FFE /* OgreMaterial.cpp in Sources */,
|
||||||
F9BA8C44154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
F9BA8C44154328B600E63FFE /* OgreMesh.cpp in Sources */,
|
||||||
F9BA8C45154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
F9BA8C45154328B600E63FFE /* OgreSkeleton.cpp in Sources */,
|
||||||
F99A9F2A15436207000682F3 /* M3Importer.cpp in Sources */,
|
|
||||||
F99A9F3415436269000682F3 /* PlyExporter.cpp in Sources */,
|
F99A9F3415436269000682F3 /* PlyExporter.cpp in Sources */,
|
||||||
F9607071154366AB004D91DD /* adler32.c in Sources */,
|
F9607071154366AB004D91DD /* adler32.c in Sources */,
|
||||||
F9607072154366AB004D91DD /* compress.c in Sources */,
|
F9607072154366AB004D91DD /* compress.c in Sources */,
|
||||||
|
|
Loading…
Reference in New Issue