Modifying files to let assimp build under cygwin.
parent
eb1ee61420
commit
7043551068
|
@ -1,3 +1,4 @@
|
||||||
|
set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
|
||||||
cmake_minimum_required( VERSION 2.8 )
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
PROJECT( Assimp )
|
PROJECT( Assimp )
|
||||||
|
|
||||||
|
@ -61,9 +62,9 @@ if( CMAKE_COMPILER_IS_MINGW )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if((CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) AND NOT CMAKE_COMPILER_IS_MINGW)
|
if((CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) AND NOT CMAKE_COMPILER_IS_MINGW)
|
||||||
add_definitions(-fPIC) # this is a very important switch and some libraries seem now to have it....
|
set(CMAKE_CXX_FLAGS "-fPIC") # this is a very important switch and some libraries seem now to have it....
|
||||||
# hide all not-exported symbols
|
# hide all not-exported symbols
|
||||||
add_definitions( -fvisibility=hidden -Wall )
|
set(CMAKE_CXX_FLAGS "-fvisibility=hidden -Wall" )
|
||||||
elseif(MSVC)
|
elseif(MSVC)
|
||||||
# enable multi-core compilation with MSVC
|
# enable multi-core compilation with MSVC
|
||||||
add_definitions(/MP)
|
add_definitions(/MP)
|
||||||
|
|
|
@ -46,7 +46,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "BaseImporter.h"
|
#include "BaseImporter.h"
|
||||||
#include "FileSystemFilter.h"
|
#include "FileSystemFilter.h"
|
||||||
#include "Importer.h"
|
#include "Importer.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "../include/assimp/scene.h"
|
#include "../include/assimp/scene.h"
|
||||||
#include "../include/assimp/Importer.hpp"
|
#include "../include/assimp/Importer.hpp"
|
||||||
#include "../include/assimp/postprocess.h"
|
#include "../include/assimp/postprocess.h"
|
||||||
|
|
|
@ -49,7 +49,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "Bitmap.h"
|
#include "Bitmap.h"
|
||||||
#include "../include/assimp/texture.h"
|
#include "../include/assimp/texture.h"
|
||||||
#include "../include/assimp/IOStream.hpp"
|
#include "../include/assimp/IOStream.hpp"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
/** @file Helper class tp perform various byte oder swappings
|
/** @file Helper class tp perform various byte oder swappings
|
||||||
(e.g. little to big endian) */
|
(e.g. little to big endian) */
|
||||||
#ifndef AI_BYTESWAP_H_INC
|
#ifndef AI_BYTESWAPPER_H_INC
|
||||||
#define AI_BYTESWAP_H_INC
|
#define AI_BYTESWAPPER_H_INC
|
||||||
|
|
||||||
#include "../include/assimp/ai_assert.h"
|
#include "../include/assimp/ai_assert.h"
|
||||||
#include "../include/assimp/types.h"
|
#include "../include/assimp/types.h"
|
||||||
|
@ -283,4 +283,4 @@ struct Getter<SwapEndianess,T,false> {
|
||||||
} // end Intern
|
} // end Intern
|
||||||
} // end Assimp
|
} // end Assimp
|
||||||
|
|
||||||
#endif //!! AI_BYTESWAP_H_INC
|
#endif //!! AI_BYTESWAPPER_H_INC
|
|
@ -98,7 +98,7 @@ SET( Common_SRCS
|
||||||
ScenePrivate.h
|
ScenePrivate.h
|
||||||
PostStepRegistry.cpp
|
PostStepRegistry.cpp
|
||||||
ImporterRegistry.cpp
|
ImporterRegistry.cpp
|
||||||
ByteSwap.h
|
ByteSwapper.h
|
||||||
DefaultProgressHandler.h
|
DefaultProgressHandler.h
|
||||||
DefaultIOStream.cpp
|
DefaultIOStream.cpp
|
||||||
DefaultIOStream.h
|
DefaultIOStream.h
|
||||||
|
|
|
@ -50,7 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "../include/assimp/defs.h"
|
#include "../include/assimp/defs.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "Exceptional.h"
|
#include "Exceptional.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace FBX {
|
namespace FBX {
|
||||||
|
|
|
@ -59,7 +59,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "ParsingUtils.h"
|
#include "ParsingUtils.h"
|
||||||
#include "fast_atof.h"
|
#include "fast_atof.h"
|
||||||
#include <boost/foreach.hpp>
|
#include <boost/foreach.hpp>
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
using namespace Assimp::FBX;
|
using namespace Assimp::FBX;
|
||||||
|
@ -1316,4 +1316,3 @@ int64_t ParseTokenAsInt64(const Token& t)
|
||||||
} // !Assimp
|
} // !Assimp
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
// Definitions for the Interchange File Format (IFF)
|
// Definitions for the Interchange File Format (IFF)
|
||||||
// Alexander Gessler, 2006
|
// Alexander Gessler, 2006
|
||||||
// Adapted to Assimp August 2008
|
// Adapted to Assimp August 2008
|
||||||
|
@ -7,7 +5,7 @@
|
||||||
#ifndef AI_IFF_H_INCLUDED
|
#ifndef AI_IFF_H_INCLUDED
|
||||||
#define AI_IFF_H_INCLUDED
|
#define AI_IFF_H_INCLUDED
|
||||||
|
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace IFF {
|
namespace IFF {
|
||||||
|
|
|
@ -50,7 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "LWOLoader.h"
|
#include "LWOLoader.h"
|
||||||
#include "StringComparison.h"
|
#include "StringComparison.h"
|
||||||
#include "SGSpatialSort.h"
|
#include "SGSpatialSort.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "ProcessHelper.h"
|
#include "ProcessHelper.h"
|
||||||
#include "ConvertToLHProcess.h"
|
#include "ConvertToLHProcess.h"
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
|
|
@ -44,7 +44,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
/** @file Implementation of the MD2 importer class */
|
/** @file Implementation of the MD2 importer class */
|
||||||
#include "MD2Loader.h"
|
#include "MD2Loader.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "MD2NormalTable.h" // shouldn't be included by other units
|
#include "MD2NormalTable.h" // shouldn't be included by other units
|
||||||
#include "../include/assimp/DefaultLogger.hpp"
|
#include "../include/assimp/DefaultLogger.hpp"
|
||||||
#include "../include/assimp/Importer.hpp"
|
#include "../include/assimp/Importer.hpp"
|
||||||
|
|
|
@ -46,7 +46,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#include "BaseImporter.h"
|
#include "BaseImporter.h"
|
||||||
#include "../include/assimp/types.h"
|
#include "../include/assimp/types.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
#include "MD2FileData.h"
|
#include "MD2FileData.h"
|
||||||
struct aiNode;
|
struct aiNode;
|
||||||
|
|
|
@ -52,7 +52,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef ASSIMP_BUILD_NO_MD3_IMPORTER
|
#ifndef ASSIMP_BUILD_NO_MD3_IMPORTER
|
||||||
|
|
||||||
#include "MD3Loader.h"
|
#include "MD3Loader.h"
|
||||||
#include "ByteSwap.h"
|
|
||||||
#include "SceneCombiner.h"
|
#include "SceneCombiner.h"
|
||||||
#include "GenericProperty.h"
|
#include "GenericProperty.h"
|
||||||
#include "RemoveComments.h"
|
#include "RemoveComments.h"
|
||||||
|
|
|
@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#define AI_MD3LOADER_H_INCLUDED
|
#define AI_MD3LOADER_H_INCLUDED
|
||||||
|
|
||||||
#include "BaseImporter.h"
|
#include "BaseImporter.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "MD3FileData.h"
|
#include "MD3FileData.h"
|
||||||
#include "StringComparison.h"
|
#include "StringComparison.h"
|
||||||
#include "../include/assimp/types.h"
|
#include "../include/assimp/types.h"
|
||||||
|
|
|
@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#include "BaseImporter.h"
|
#include "BaseImporter.h"
|
||||||
#include "MDCFileData.h"
|
#include "MDCFileData.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
using namespace MDC;
|
using namespace MDC;
|
||||||
|
@ -125,4 +125,3 @@ protected:
|
||||||
} // end of namespace Assimp
|
} // end of namespace Assimp
|
||||||
|
|
||||||
#endif // AI_3DSIMPORTER_H_INC
|
#endif // AI_3DSIMPORTER_H_INC
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef AI_MDLFILEHELPER_H_INC
|
#ifndef AI_MDLFILEHELPER_H_INC
|
||||||
#define AI_MDLFILEHELPER_H_INC
|
#define AI_MDLFILEHELPER_H_INC
|
||||||
|
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "./../include/assimp/anim.h"
|
#include "./../include/assimp/anim.h"
|
||||||
#include "./../include/assimp/mesh.h"
|
#include "./../include/assimp/mesh.h"
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include "./../include/assimp/Compiler/pushpack1.h"
|
||||||
|
|
|
@ -47,7 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "PlyLoader.h"
|
#include "PlyLoader.h"
|
||||||
#include "fast_atof.h"
|
#include "fast_atof.h"
|
||||||
#include "../include/assimp/DefaultLogger.hpp"
|
#include "../include/assimp/DefaultLogger.hpp"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
|
|
|
@ -49,7 +49,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "../include/assimp/Exporter.hpp"
|
#include "../include/assimp/Exporter.hpp"
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
#include "Exceptional.h"
|
#include "Exceptional.h"
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
|
|
@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef AI_STREAMREADER_H_INCLUDED
|
#ifndef AI_STREAMREADER_H_INCLUDED
|
||||||
#define AI_STREAMREADER_H_INCLUDED
|
#define AI_STREAMREADER_H_INCLUDED
|
||||||
|
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "Exceptional.h"
|
#include "Exceptional.h"
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
#include "../include/assimp/IOStream.hpp"
|
#include "../include/assimp/IOStream.hpp"
|
||||||
|
|
|
@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef AI_STREAMWRITER_H_INCLUDED
|
#ifndef AI_STREAMWRITER_H_INCLUDED
|
||||||
#define AI_STREAMWRITER_H_INCLUDED
|
#define AI_STREAMWRITER_H_INCLUDED
|
||||||
|
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "../include/assimp/IOStream.hpp"
|
#include "../include/assimp/IOStream.hpp"
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
|
@ -50,7 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "Exceptional.h"
|
#include "Exceptional.h"
|
||||||
#include <boost/format.hpp>
|
#include <boost/format.hpp>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
#include "ByteSwap.h"
|
#include "ByteSwapper.h"
|
||||||
#include "../include/assimp/DefaultLogger.hpp"
|
#include "../include/assimp/DefaultLogger.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1586,7 +1586,7 @@ Don't trust the input data! Check all offsets!
|
||||||
|
|
||||||
Mixed stuff for internal use by loaders, mostly documented (most of them are already included by <i>AssimpPCH.h</i>):
|
Mixed stuff for internal use by loaders, mostly documented (most of them are already included by <i>AssimpPCH.h</i>):
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>ByteSwap</b> (<i>ByteSwap.h</i>) - manual byte swapping stuff for binary loaders.</li>
|
<li><b>ByteSwapper</b> (<i>ByteSwapper.h</i>) - manual byte swapping stuff for binary loaders.</li>
|
||||||
<li><b>StreamReader</b> (<i>StreamReader.h</i>) - safe, endianess-correct, binary reading.</li>
|
<li><b>StreamReader</b> (<i>StreamReader.h</i>) - safe, endianess-correct, binary reading.</li>
|
||||||
<li><b>IrrXML</b> (<i>irrXMLWrapper.h</i>) - for XML-parsing (SAX.</li>
|
<li><b>IrrXML</b> (<i>irrXMLWrapper.h</i>) - for XML-parsing (SAX.</li>
|
||||||
<li><b>CommentRemover</b> (<i>RemoveComments.h</i>) - remove single-line and multi-line comments from a text file.</li>
|
<li><b>CommentRemover</b> (<i>RemoveComments.h</i>) - remove single-line and multi-line comments from a text file.</li>
|
||||||
|
|
|
@ -117,11 +117,11 @@
|
||||||
2B7F478E1708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
2B7F478E1708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
||||||
2B7F478F1708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
2B7F478F1708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
||||||
2B7F47901708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
2B7F47901708365200A106A9 /* tuple.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45961708365100A106A9 /* tuple.hpp */; };
|
||||||
2B7F479B1708365200A106A9 /* ByteSwap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwap.h */; };
|
2B7F479B1708365200A106A9 /* ByteSwapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwapper.h */; };
|
||||||
2B7F479C1708365200A106A9 /* ByteSwap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwap.h */; };
|
2B7F479C1708365200A106A9 /* ByteSwapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwapper.h */; };
|
||||||
2B7F479D1708365200A106A9 /* ByteSwap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwap.h */; };
|
2B7F479D1708365200A106A9 /* ByteSwapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwapper.h */; };
|
||||||
2B7F479E1708365200A106A9 /* ByteSwap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwap.h */; };
|
2B7F479E1708365200A106A9 /* ByteSwapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwapper.h */; };
|
||||||
2B7F479F1708365200A106A9 /* ByteSwap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwap.h */; };
|
2B7F479F1708365200A106A9 /* ByteSwapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7F45991708365100A106A9 /* ByteSwapper.h */; };
|
||||||
2B7F47A01708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
2B7F47A01708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
||||||
2B7F47A11708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
2B7F47A11708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
||||||
2B7F47A21708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
2B7F47A21708365200A106A9 /* CalcTangentsProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */; };
|
||||||
|
@ -2018,7 +2018,7 @@
|
||||||
2B7F45931708365100A106A9 /* static_assert.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = static_assert.hpp; sourceTree = "<group>"; };
|
2B7F45931708365100A106A9 /* static_assert.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = static_assert.hpp; sourceTree = "<group>"; };
|
||||||
2B7F45941708365100A106A9 /* timer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = timer.hpp; sourceTree = "<group>"; };
|
2B7F45941708365100A106A9 /* timer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = timer.hpp; sourceTree = "<group>"; };
|
||||||
2B7F45961708365100A106A9 /* tuple.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = tuple.hpp; sourceTree = "<group>"; };
|
2B7F45961708365100A106A9 /* tuple.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = tuple.hpp; sourceTree = "<group>"; };
|
||||||
2B7F45991708365100A106A9 /* ByteSwap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByteSwap.h; sourceTree = "<group>"; };
|
2B7F45991708365100A106A9 /* ByteSwapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByteSwapper.h; sourceTree = "<group>"; };
|
||||||
2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CalcTangentsProcess.cpp; sourceTree = "<group>"; };
|
2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CalcTangentsProcess.cpp; sourceTree = "<group>"; };
|
||||||
2B7F459B1708365100A106A9 /* CalcTangentsProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalcTangentsProcess.h; sourceTree = "<group>"; };
|
2B7F459B1708365100A106A9 /* CalcTangentsProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CalcTangentsProcess.h; sourceTree = "<group>"; };
|
||||||
2B7F459C1708365100A106A9 /* CInterfaceIOWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CInterfaceIOWrapper.h; sourceTree = "<group>"; };
|
2B7F459C1708365100A106A9 /* CInterfaceIOWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CInterfaceIOWrapper.h; sourceTree = "<group>"; };
|
||||||
|
@ -2509,7 +2509,7 @@
|
||||||
2B7F45761708365100A106A9 /* BaseProcess.cpp */,
|
2B7F45761708365100A106A9 /* BaseProcess.cpp */,
|
||||||
2B7F45771708365100A106A9 /* BaseProcess.h */,
|
2B7F45771708365100A106A9 /* BaseProcess.h */,
|
||||||
2B7F45831708365100A106A9 /* BlobIOSystem.h */,
|
2B7F45831708365100A106A9 /* BlobIOSystem.h */,
|
||||||
2B7F45991708365100A106A9 /* ByteSwap.h */,
|
2B7F45991708365100A106A9 /* ByteSwapper.h */,
|
||||||
2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */,
|
2B7F459A1708365100A106A9 /* CalcTangentsProcess.cpp */,
|
||||||
2B7F459B1708365100A106A9 /* CalcTangentsProcess.h */,
|
2B7F459B1708365100A106A9 /* CalcTangentsProcess.h */,
|
||||||
2B7F459C1708365100A106A9 /* CInterfaceIOWrapper.h */,
|
2B7F459C1708365100A106A9 /* CInterfaceIOWrapper.h */,
|
||||||
|
@ -3517,7 +3517,7 @@
|
||||||
2B7F47841708365200A106A9 /* static_assert.hpp in Headers */,
|
2B7F47841708365200A106A9 /* static_assert.hpp in Headers */,
|
||||||
2B7F47891708365200A106A9 /* timer.hpp in Headers */,
|
2B7F47891708365200A106A9 /* timer.hpp in Headers */,
|
||||||
2B7F478E1708365200A106A9 /* tuple.hpp in Headers */,
|
2B7F478E1708365200A106A9 /* tuple.hpp in Headers */,
|
||||||
2B7F479D1708365200A106A9 /* ByteSwap.h in Headers */,
|
2B7F479D1708365200A106A9 /* ByteSwapper.h in Headers */,
|
||||||
2B7F47A71708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
2B7F47A71708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
||||||
2B7F47AC1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
2B7F47AC1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
||||||
2B7F47C51708365200A106A9 /* ColladaExporter.h in Headers */,
|
2B7F47C51708365200A106A9 /* ColladaExporter.h in Headers */,
|
||||||
|
@ -3765,7 +3765,7 @@
|
||||||
2B7F47851708365200A106A9 /* static_assert.hpp in Headers */,
|
2B7F47851708365200A106A9 /* static_assert.hpp in Headers */,
|
||||||
2B7F478A1708365200A106A9 /* timer.hpp in Headers */,
|
2B7F478A1708365200A106A9 /* timer.hpp in Headers */,
|
||||||
2B7F478F1708365200A106A9 /* tuple.hpp in Headers */,
|
2B7F478F1708365200A106A9 /* tuple.hpp in Headers */,
|
||||||
2B7F479E1708365200A106A9 /* ByteSwap.h in Headers */,
|
2B7F479E1708365200A106A9 /* ByteSwapper.h in Headers */,
|
||||||
2B7F47A81708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
2B7F47A81708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
||||||
2B7F47AD1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
2B7F47AD1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
||||||
2B7F47C61708365200A106A9 /* ColladaExporter.h in Headers */,
|
2B7F47C61708365200A106A9 /* ColladaExporter.h in Headers */,
|
||||||
|
@ -4013,7 +4013,7 @@
|
||||||
2B7F47861708365200A106A9 /* static_assert.hpp in Headers */,
|
2B7F47861708365200A106A9 /* static_assert.hpp in Headers */,
|
||||||
2B7F478B1708365200A106A9 /* timer.hpp in Headers */,
|
2B7F478B1708365200A106A9 /* timer.hpp in Headers */,
|
||||||
2B7F47901708365200A106A9 /* tuple.hpp in Headers */,
|
2B7F47901708365200A106A9 /* tuple.hpp in Headers */,
|
||||||
2B7F479F1708365200A106A9 /* ByteSwap.h in Headers */,
|
2B7F479F1708365200A106A9 /* ByteSwapper.h in Headers */,
|
||||||
2B7F47A91708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
2B7F47A91708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
||||||
2B7F47AE1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
2B7F47AE1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
||||||
2B7F47C71708365200A106A9 /* ColladaExporter.h in Headers */,
|
2B7F47C71708365200A106A9 /* ColladaExporter.h in Headers */,
|
||||||
|
@ -4261,7 +4261,7 @@
|
||||||
2B7F47821708365200A106A9 /* static_assert.hpp in Headers */,
|
2B7F47821708365200A106A9 /* static_assert.hpp in Headers */,
|
||||||
2B7F47871708365200A106A9 /* timer.hpp in Headers */,
|
2B7F47871708365200A106A9 /* timer.hpp in Headers */,
|
||||||
2B7F478C1708365200A106A9 /* tuple.hpp in Headers */,
|
2B7F478C1708365200A106A9 /* tuple.hpp in Headers */,
|
||||||
2B7F479B1708365200A106A9 /* ByteSwap.h in Headers */,
|
2B7F479B1708365200A106A9 /* ByteSwapper.h in Headers */,
|
||||||
2B7F47A51708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
2B7F47A51708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
||||||
2B7F47AA1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
2B7F47AA1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
||||||
2B7F47C31708365200A106A9 /* ColladaExporter.h in Headers */,
|
2B7F47C31708365200A106A9 /* ColladaExporter.h in Headers */,
|
||||||
|
@ -4509,7 +4509,7 @@
|
||||||
2B7F47831708365200A106A9 /* static_assert.hpp in Headers */,
|
2B7F47831708365200A106A9 /* static_assert.hpp in Headers */,
|
||||||
2B7F47881708365200A106A9 /* timer.hpp in Headers */,
|
2B7F47881708365200A106A9 /* timer.hpp in Headers */,
|
||||||
2B7F478D1708365200A106A9 /* tuple.hpp in Headers */,
|
2B7F478D1708365200A106A9 /* tuple.hpp in Headers */,
|
||||||
2B7F479C1708365200A106A9 /* ByteSwap.h in Headers */,
|
2B7F479C1708365200A106A9 /* ByteSwapper.h in Headers */,
|
||||||
2B7F47A61708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
2B7F47A61708365200A106A9 /* CalcTangentsProcess.h in Headers */,
|
||||||
2B7F47AB1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
2B7F47AB1708365200A106A9 /* CInterfaceIOWrapper.h in Headers */,
|
||||||
2B7F47C41708365200A106A9 /* ColladaExporter.h in Headers */,
|
2B7F47C41708365200A106A9 /* ColladaExporter.h in Headers */,
|
||||||
|
|
Loading…
Reference in New Issue