2016-09-29 20:16:59 +00:00
|
|
|
# Open Asset Import Library (assimp)
|
2016-04-23 07:42:05 +00:00
|
|
|
# ----------------------------------------------------------------------
|
2016-05-07 12:16:33 +00:00
|
|
|
#
|
2016-04-23 07:42:05 +00:00
|
|
|
# Copyright (c) 2006-2016, assimp team
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this software in source and binary forms,
|
|
|
|
# with or without modification, are permitted provided that the
|
|
|
|
# following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above
|
|
|
|
# copyright notice, this list of conditions and the
|
|
|
|
# following disclaimer.
|
|
|
|
#
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the
|
|
|
|
# following disclaimer in the documentation and/or other
|
|
|
|
# materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# * Neither the name of the assimp team, nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior
|
|
|
|
# written permission of the assimp team.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2015-05-19 03:44:54 +00:00
|
|
|
# Listing and grouping of all the source files.
|
|
|
|
# 1) Set the file lists for each component
|
|
|
|
# 2) Create a Source Group for each component, for IDE project orginization
|
|
|
|
# 3) Add libassimp using the file lists (eliminates duplication of file names between
|
|
|
|
# source groups and library command)
|
|
|
|
#
|
|
|
|
cmake_minimum_required( VERSION 2.6 )
|
|
|
|
SET( HEADER_PATH ../include/assimp )
|
|
|
|
|
|
|
|
SET( COMPILER_HEADERS
|
|
|
|
${HEADER_PATH}/Compiler/pushpack1.h
|
|
|
|
${HEADER_PATH}/Compiler/poppack1.h
|
|
|
|
${HEADER_PATH}/Compiler/pstdint.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Compiler FILES ${COMPILER_HEADERS})
|
|
|
|
|
|
|
|
SET( PUBLIC_HEADERS
|
|
|
|
${HEADER_PATH}/anim.h
|
|
|
|
${HEADER_PATH}/ai_assert.h
|
|
|
|
${HEADER_PATH}/camera.h
|
|
|
|
${HEADER_PATH}/color4.h
|
|
|
|
${HEADER_PATH}/color4.inl
|
|
|
|
${HEADER_PATH}/config.h
|
|
|
|
${HEADER_PATH}/defs.h
|
|
|
|
${HEADER_PATH}/cfileio.h
|
|
|
|
${HEADER_PATH}/light.h
|
|
|
|
${HEADER_PATH}/material.h
|
|
|
|
${HEADER_PATH}/material.inl
|
|
|
|
${HEADER_PATH}/matrix3x3.h
|
|
|
|
${HEADER_PATH}/matrix3x3.inl
|
|
|
|
${HEADER_PATH}/matrix4x4.h
|
|
|
|
${HEADER_PATH}/matrix4x4.inl
|
|
|
|
${HEADER_PATH}/mesh.h
|
|
|
|
${HEADER_PATH}/postprocess.h
|
|
|
|
${HEADER_PATH}/quaternion.h
|
|
|
|
${HEADER_PATH}/quaternion.inl
|
|
|
|
${HEADER_PATH}/scene.h
|
|
|
|
${HEADER_PATH}/metadata.h
|
|
|
|
${HEADER_PATH}/texture.h
|
|
|
|
${HEADER_PATH}/types.h
|
|
|
|
${HEADER_PATH}/vector2.h
|
|
|
|
${HEADER_PATH}/vector2.inl
|
|
|
|
${HEADER_PATH}/vector3.h
|
|
|
|
${HEADER_PATH}/vector3.inl
|
|
|
|
${HEADER_PATH}/version.h
|
|
|
|
${HEADER_PATH}/cimport.h
|
|
|
|
${HEADER_PATH}/importerdesc.h
|
|
|
|
${HEADER_PATH}/Importer.hpp
|
|
|
|
${HEADER_PATH}/DefaultLogger.hpp
|
|
|
|
${HEADER_PATH}/ProgressHandler.hpp
|
|
|
|
${HEADER_PATH}/IOStream.hpp
|
|
|
|
${HEADER_PATH}/IOSystem.hpp
|
|
|
|
${HEADER_PATH}/Logger.hpp
|
|
|
|
${HEADER_PATH}/LogStream.hpp
|
|
|
|
${HEADER_PATH}/NullLogger.hpp
|
|
|
|
${HEADER_PATH}/cexport.h
|
|
|
|
${HEADER_PATH}/Exporter.hpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET( Core_SRCS
|
|
|
|
Assimp.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET( Logging_SRCS
|
|
|
|
${HEADER_PATH}/DefaultLogger.hpp
|
|
|
|
${HEADER_PATH}/LogStream.hpp
|
|
|
|
${HEADER_PATH}/Logger.hpp
|
|
|
|
${HEADER_PATH}/NullLogger.hpp
|
|
|
|
Win32DebugLogStream.h
|
|
|
|
DefaultLogger.cpp
|
|
|
|
FileLogStream.h
|
|
|
|
StdOStreamLogStream.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP(Logging FILES ${Logging_SRCS})
|
|
|
|
|
|
|
|
SET( Common_SRCS
|
|
|
|
fast_atof.h
|
|
|
|
qnan.h
|
|
|
|
BaseImporter.cpp
|
|
|
|
BaseImporter.h
|
|
|
|
BaseProcess.cpp
|
|
|
|
BaseProcess.h
|
|
|
|
Importer.h
|
|
|
|
ScenePrivate.h
|
|
|
|
PostStepRegistry.cpp
|
|
|
|
ImporterRegistry.cpp
|
|
|
|
ByteSwapper.h
|
|
|
|
DefaultProgressHandler.h
|
|
|
|
DefaultIOStream.cpp
|
|
|
|
DefaultIOStream.h
|
|
|
|
DefaultIOSystem.cpp
|
|
|
|
DefaultIOSystem.h
|
2016-10-17 13:28:14 +00:00
|
|
|
CInterfaceIOWrapper.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
CInterfaceIOWrapper.h
|
|
|
|
Hash.h
|
|
|
|
Importer.cpp
|
|
|
|
IFF.h
|
|
|
|
MemoryIOWrapper.h
|
|
|
|
ParsingUtils.h
|
|
|
|
StreamReader.h
|
|
|
|
StreamWriter.h
|
|
|
|
StringComparison.h
|
2016-01-06 14:35:25 +00:00
|
|
|
StringUtils.h
|
2015-05-19 03:44:54 +00:00
|
|
|
SGSpatialSort.cpp
|
|
|
|
SGSpatialSort.h
|
|
|
|
VertexTriangleAdjacency.cpp
|
|
|
|
VertexTriangleAdjacency.h
|
|
|
|
GenericProperty.h
|
|
|
|
SpatialSort.cpp
|
|
|
|
SpatialSort.h
|
|
|
|
SceneCombiner.cpp
|
|
|
|
SceneCombiner.h
|
|
|
|
ScenePreprocessor.cpp
|
|
|
|
ScenePreprocessor.h
|
|
|
|
SkeletonMeshBuilder.cpp
|
|
|
|
SkeletonMeshBuilder.h
|
|
|
|
SplitByBoneCountProcess.cpp
|
|
|
|
SplitByBoneCountProcess.h
|
|
|
|
SmoothingGroups.h
|
|
|
|
StandardShapes.cpp
|
|
|
|
StandardShapes.h
|
|
|
|
TargetAnimation.cpp
|
|
|
|
TargetAnimation.h
|
|
|
|
RemoveComments.cpp
|
|
|
|
RemoveComments.h
|
|
|
|
Subdivision.cpp
|
|
|
|
Subdivision.h
|
|
|
|
Vertex.h
|
|
|
|
LineSplitter.h
|
|
|
|
TinyFormatter.h
|
|
|
|
Profiler.h
|
|
|
|
LogAux.h
|
|
|
|
Bitmap.cpp
|
|
|
|
Bitmap.h
|
|
|
|
XMLTools.h
|
|
|
|
Version.cpp
|
2016-10-11 10:29:40 +00:00
|
|
|
IOStreamBuffer.h
|
2015-05-19 03:44:54 +00:00
|
|
|
)
|
|
|
|
SOURCE_GROUP(Common FILES ${Common_SRCS})
|
|
|
|
|
|
|
|
IF ( ASSIMP_BUILD_NONFREE_C4D_IMPORTER )
|
|
|
|
SET( C4D_SRCS
|
|
|
|
C4DImporter.cpp
|
|
|
|
C4DImporter.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( C4D FILES ${C4D_SRCS})
|
|
|
|
ENDIF ( ASSIMP_BUILD_NONFREE_C4D_IMPORTER )
|
|
|
|
|
Make assimp build cherry-picked importers in CMake
Modify assimp's cmake to exclude the build of all the importers
by default; the user has then to manually select the ones needed
by setting the relative option.
From the explanation as written in the CMakeLists itself:
---
This option allows to select whether to build all the importers and then
manually select which ones not to build (old behaviour), or if to
exclude all importers from build and manually select the ones to actually
build.
By default, exclude all importers and manually select which ones to use.
To have all importers excluded, simply do not set this option in the parent
CmakeLists. Then, set the option for the importer(s) needed in the parent
CMakeLists, e.g.:
OPTION(ASSIMP_BUILD_OBJ_IMPORTER "" TRUE)
To have assimp build all the importers, set the option to true, then manually
exclude which importers you don't need, e.g.:
OPTION(ASSIMP_BUILD_OBJ_IMPORTER "" FALSE)
NOTE: In order to use this method of exclusion, the tools build must be disabled;
their code references certain importers/exporters which would be excluded.
If you need the tools, either manually add the importers/exporters the code
references (you will see linkage errors), or just enable the build of all the
importers as explained above.
---
As mentioned there, set the main CMakeLists not to build the tools and
the tests by default, since they use certain exporters and importers
which, with this method, are not necessarily used/built.
2016-11-12 01:29:46 +00:00
|
|
|
# This option allows to select whether to build all the importers and then
|
|
|
|
# manually select which ones not to build (old behaviour), or if to
|
|
|
|
# exclude all importers from build and manually select the ones to actually
|
|
|
|
# build.
|
|
|
|
# By default, exclude all importers and manually select which ones to use.
|
|
|
|
#
|
|
|
|
# To have all importers excluded, simply do not set this option in the parent
|
|
|
|
# CmakeLists. Then, set the option for the importer(s) needed in the parent
|
|
|
|
# CMakeLists, e.g.:
|
|
|
|
# OPTION(ASSIMP_BUILD_OBJ_IMPORTER "" TRUE)
|
|
|
|
#
|
|
|
|
# To have assimp build all the importers, set the option to true, then manually
|
|
|
|
# exclude which importers you don't need, e.g.:
|
|
|
|
# OPTION(ASSIMP_BUILD_OBJ_IMPORTER "" FALSE)
|
|
|
|
#
|
|
|
|
# NOTE: In order to use this method of exclusion, the tools build must be disabled;
|
|
|
|
# their code references certain importers/exporters which would be excluded.
|
|
|
|
# If you need the tools, either manually add the importers/exporters the code
|
|
|
|
# references (you will see linkage errors), or just enable the build of all the
|
|
|
|
# importers as explained above.
|
|
|
|
OPTION(ASSIMP_BUILD_ALL_AND_EXCLUDE "Build all importers and select which ones
|
|
|
|
to not build" FALSE)
|
|
|
|
IF(ASSIMP_BUILD_ALL_AND_EXCLUDE)
|
|
|
|
# macro to add the CMake Option ADD_ASSIMP_IMPORTER_<name> which enables compile of loader
|
|
|
|
# this way selective loaders can be compiled (reduces filesize + compile time)
|
|
|
|
MACRO(ADD_ASSIMP_IMPORTER name)
|
|
|
|
OPTION(ASSIMP_BUILD_${name}_IMPORTER "build the ${name} importer" TRUE)
|
|
|
|
IF(ASSIMP_BUILD_${name}_IMPORTER)
|
|
|
|
LIST(APPEND ASSIMP_LOADER_SRCS ${ARGN})
|
|
|
|
SET(ASSIMP_IMPORTERS_ENABLED "${ASSIMP_IMPORTERS_ENABLED} ${name}")
|
|
|
|
SET(${name}_SRCS ${ARGN})
|
|
|
|
SOURCE_GROUP(${name} FILES ${ARGN})
|
|
|
|
ELSE()
|
|
|
|
SET(${name}_SRC "")
|
|
|
|
SET(ASSIMP_IMPORTERS_DISABLED "${ASSIMP_IMPORTERS_DISABLED} ${name}")
|
|
|
|
add_definitions(-DASSIMP_BUILD_NO_${name}_IMPORTER)
|
|
|
|
ENDIF()
|
|
|
|
ENDMACRO()
|
|
|
|
ELSE(ASSIMP_BUILD_ALL_AND_EXCLUDE)
|
|
|
|
MACRO(ADD_ASSIMP_IMPORTER name)
|
|
|
|
OPTION(ASSIMP_BUILD_${name}_IMPORTER "build the ${name} importer" FALSE)
|
|
|
|
MESSAGE(STATUS "Setting false for ${name}")
|
|
|
|
IF(ASSIMP_BUILD_${name}_IMPORTER)
|
|
|
|
LIST(APPEND ASSIMP_LOADER_SRCS ${ARGN})
|
|
|
|
SET(ASSIMP_IMPORTERS_ENABLED "${ASSIMP_IMPORTERS_ENABLED} ${name}")
|
|
|
|
SET(${name}_SRCS ${ARGN})
|
|
|
|
SOURCE_GROUP(${name} FILES ${ARGN})
|
|
|
|
MESSAGE(STATUS "Setting true for ${name}")
|
|
|
|
ELSE()
|
|
|
|
SET(${name}_SRC "")
|
|
|
|
SET(ASSIMP_IMPORTERS_DISABLED "${ASSIMP_IMPORTERS_DISABLED} ${name}")
|
|
|
|
add_definitions(-DASSIMP_BUILD_NO_${name}_IMPORTER)
|
|
|
|
MESSAGE(STATUS "Setting false for ${name}")
|
|
|
|
ENDIF()
|
|
|
|
ENDMACRO()
|
|
|
|
ENDIF(ASSIMP_BUILD_ALL_AND_EXCLUDE)
|
2015-05-19 03:44:54 +00:00
|
|
|
|
|
|
|
SET(ASSIMP_LOADER_SRCS "")
|
|
|
|
SET(ASSIMP_IMPORTERS_ENABLED "") # list of enabled importers
|
|
|
|
SET(ASSIMP_IMPORTERS_DISABLED "") # disabled list (used to print)
|
|
|
|
|
2016-09-26 09:57:44 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( AMF
|
|
|
|
AMFImporter.hpp
|
|
|
|
AMFImporter_Macro.hpp
|
|
|
|
AMFImporter_Node.hpp
|
|
|
|
AMFImporter.cpp
|
|
|
|
AMFImporter_Geometry.cpp
|
|
|
|
AMFImporter_Material.cpp
|
|
|
|
AMFImporter_Postprocess.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( 3DS
|
2015-05-19 03:44:54 +00:00
|
|
|
3DSConverter.cpp
|
|
|
|
3DSHelper.h
|
|
|
|
3DSLoader.cpp
|
|
|
|
3DSLoader.h
|
|
|
|
3DSExporter.h
|
|
|
|
3DSExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( AC
|
2015-05-19 03:44:54 +00:00
|
|
|
ACLoader.cpp
|
|
|
|
ACLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( ASE
|
2015-05-19 03:44:54 +00:00
|
|
|
ASELoader.cpp
|
|
|
|
ASELoader.h
|
|
|
|
ASEParser.cpp
|
|
|
|
ASEParser.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( ASSBIN
|
2015-05-19 03:44:54 +00:00
|
|
|
AssbinExporter.h
|
|
|
|
AssbinExporter.cpp
|
|
|
|
AssbinLoader.h
|
|
|
|
AssbinLoader.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( ASSXML
|
2015-05-19 03:44:54 +00:00
|
|
|
AssxmlExporter.h
|
|
|
|
AssxmlExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( B3D
|
2015-05-19 03:44:54 +00:00
|
|
|
B3DImporter.cpp
|
|
|
|
B3DImporter.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( BVH
|
2015-05-19 03:44:54 +00:00
|
|
|
BVHLoader.cpp
|
|
|
|
BVHLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( COLLADA
|
2015-05-19 03:44:54 +00:00
|
|
|
ColladaHelper.h
|
|
|
|
ColladaLoader.cpp
|
|
|
|
ColladaLoader.h
|
|
|
|
ColladaParser.cpp
|
|
|
|
ColladaParser.h
|
|
|
|
ColladaExporter.h
|
|
|
|
ColladaExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( DXF
|
2015-05-19 03:44:54 +00:00
|
|
|
DXFLoader.cpp
|
|
|
|
DXFLoader.h
|
|
|
|
DXFHelper.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( CSM
|
2015-05-19 03:44:54 +00:00
|
|
|
CSMLoader.cpp
|
|
|
|
CSMLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( HMP
|
2015-05-19 03:44:54 +00:00
|
|
|
HMPFileData.h
|
|
|
|
HMPLoader.cpp
|
|
|
|
HMPLoader.h
|
|
|
|
HalfLifeFileData.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( IRRMESH
|
2016-05-09 22:26:18 +00:00
|
|
|
IRRMeshLoader.cpp
|
|
|
|
IRRMeshLoader.h
|
|
|
|
IRRShared.cpp
|
|
|
|
IRRShared.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( IRR
|
2015-05-19 03:44:54 +00:00
|
|
|
IRRLoader.cpp
|
|
|
|
IRRLoader.h
|
|
|
|
IRRShared.cpp
|
|
|
|
IRRShared.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( LWO
|
2015-05-19 03:44:54 +00:00
|
|
|
LWOAnimation.cpp
|
|
|
|
LWOAnimation.h
|
|
|
|
LWOBLoader.cpp
|
|
|
|
LWOFileData.h
|
|
|
|
LWOLoader.cpp
|
|
|
|
LWOLoader.h
|
|
|
|
LWOMaterial.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( LWS
|
2015-05-19 03:44:54 +00:00
|
|
|
LWSLoader.cpp
|
|
|
|
LWSLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MD2
|
2015-05-19 03:44:54 +00:00
|
|
|
MD2FileData.h
|
|
|
|
MD2Loader.cpp
|
|
|
|
MD2Loader.h
|
|
|
|
MD2NormalTable.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MD3
|
2015-05-19 03:44:54 +00:00
|
|
|
MD3FileData.h
|
|
|
|
MD3Loader.cpp
|
|
|
|
MD3Loader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MD5
|
2015-05-19 03:44:54 +00:00
|
|
|
MD5Loader.cpp
|
|
|
|
MD5Loader.h
|
|
|
|
MD5Parser.cpp
|
|
|
|
MD5Parser.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MDC
|
2015-05-19 03:44:54 +00:00
|
|
|
MDCFileData.h
|
|
|
|
MDCLoader.cpp
|
|
|
|
MDCLoader.h
|
|
|
|
MDCNormalTable.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MDL
|
2015-05-19 03:44:54 +00:00
|
|
|
MDLDefaultColorMap.h
|
|
|
|
MDLFileData.h
|
|
|
|
MDLLoader.cpp
|
|
|
|
MDLLoader.h
|
|
|
|
MDLMaterialLoader.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET( MaterialSystem_SRCS
|
|
|
|
MaterialSystem.cpp
|
|
|
|
MaterialSystem.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( MaterialSystem FILES ${MaterialSystem_SRCS})
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( NFF
|
2015-05-19 03:44:54 +00:00
|
|
|
NFFLoader.cpp
|
|
|
|
NFFLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( NDO
|
2015-05-19 03:44:54 +00:00
|
|
|
NDOLoader.cpp
|
|
|
|
NDOLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( OFF
|
2015-05-19 03:44:54 +00:00
|
|
|
OFFLoader.cpp
|
|
|
|
OFFLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( OBJ
|
2015-05-19 03:44:54 +00:00
|
|
|
ObjFileData.h
|
|
|
|
ObjFileImporter.cpp
|
|
|
|
ObjFileImporter.h
|
|
|
|
ObjFileMtlImporter.cpp
|
|
|
|
ObjFileMtlImporter.h
|
|
|
|
ObjFileParser.cpp
|
|
|
|
ObjFileParser.h
|
|
|
|
ObjTools.h
|
|
|
|
ObjExporter.h
|
|
|
|
ObjExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( OGRE
|
2015-05-19 03:44:54 +00:00
|
|
|
OgreImporter.h
|
|
|
|
OgreStructs.h
|
|
|
|
OgreParsingUtils.h
|
|
|
|
OgreBinarySerializer.h
|
|
|
|
OgreXmlSerializer.h
|
|
|
|
OgreImporter.cpp
|
|
|
|
OgreStructs.cpp
|
|
|
|
OgreBinarySerializer.cpp
|
|
|
|
OgreXmlSerializer.cpp
|
|
|
|
OgreMaterial.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( OPENGEX
|
2015-07-01 18:43:37 +00:00
|
|
|
OpenGEXExporter.cpp
|
|
|
|
OpenGEXExporter.h
|
2015-05-19 03:44:54 +00:00
|
|
|
OpenGEXImporter.cpp
|
|
|
|
OpenGEXImporter.h
|
|
|
|
OpenGEXStructs.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( PLY
|
2015-05-19 03:44:54 +00:00
|
|
|
PlyLoader.cpp
|
|
|
|
PlyLoader.h
|
|
|
|
PlyParser.cpp
|
|
|
|
PlyParser.h
|
|
|
|
PlyExporter.cpp
|
|
|
|
PlyExporter.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( MS3D
|
2015-05-19 03:44:54 +00:00
|
|
|
MS3DLoader.cpp
|
|
|
|
MS3DLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( COB
|
2015-05-19 03:44:54 +00:00
|
|
|
COBLoader.cpp
|
|
|
|
COBLoader.h
|
|
|
|
COBScene.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( BLEND
|
2015-05-19 03:44:54 +00:00
|
|
|
BlenderLoader.cpp
|
|
|
|
BlenderLoader.h
|
|
|
|
BlenderDNA.cpp
|
|
|
|
BlenderDNA.h
|
|
|
|
BlenderDNA.inl
|
|
|
|
BlenderScene.cpp
|
|
|
|
BlenderScene.h
|
|
|
|
BlenderSceneGen.h
|
|
|
|
BlenderIntermediate.h
|
|
|
|
BlenderModifier.h
|
|
|
|
BlenderModifier.cpp
|
|
|
|
BlenderBMesh.h
|
|
|
|
BlenderBMesh.cpp
|
|
|
|
BlenderTessellator.h
|
|
|
|
BlenderTessellator.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( IFC
|
2015-05-19 03:44:54 +00:00
|
|
|
IFCLoader.cpp
|
|
|
|
IFCLoader.h
|
2016-09-23 17:48:38 +00:00
|
|
|
IFCReaderGen1.cpp
|
|
|
|
IFCReaderGen2.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
IFCReaderGen.h
|
|
|
|
IFCUtil.h
|
|
|
|
IFCUtil.cpp
|
|
|
|
IFCGeometry.cpp
|
|
|
|
IFCMaterial.cpp
|
|
|
|
IFCProfile.cpp
|
|
|
|
IFCCurve.cpp
|
|
|
|
IFCBoolean.cpp
|
|
|
|
IFCOpenings.cpp
|
|
|
|
STEPFile.h
|
|
|
|
STEPFileReader.h
|
|
|
|
STEPFileReader.cpp
|
|
|
|
STEPFileEncoding.cpp
|
|
|
|
STEPFileEncoding.h
|
|
|
|
)
|
2016-04-28 16:44:47 +00:00
|
|
|
if (MSVC AND ASSIMP_BUILD_IFC_IMPORTER)
|
|
|
|
set_source_files_properties(IFCReaderGen.cpp PROPERTIES COMPILE_FLAGS "/bigobj")
|
|
|
|
endif (MSVC AND ASSIMP_BUILD_IFC_IMPORTER)
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( XGL
|
2015-05-19 03:44:54 +00:00
|
|
|
XGLLoader.cpp
|
|
|
|
XGLLoader.h
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( FBX
|
2015-05-19 03:44:54 +00:00
|
|
|
FBXImporter.cpp
|
|
|
|
FBXCompileConfig.h
|
|
|
|
FBXImporter.h
|
|
|
|
FBXParser.cpp
|
|
|
|
FBXParser.h
|
|
|
|
FBXTokenizer.cpp
|
|
|
|
FBXTokenizer.h
|
|
|
|
FBXImportSettings.h
|
|
|
|
FBXConverter.h
|
|
|
|
FBXConverter.cpp
|
|
|
|
FBXUtil.h
|
|
|
|
FBXUtil.cpp
|
|
|
|
FBXDocument.h
|
|
|
|
FBXDocument.cpp
|
|
|
|
FBXProperties.h
|
|
|
|
FBXProperties.cpp
|
2016-03-03 14:19:38 +00:00
|
|
|
FBXMeshGeometry.h
|
2015-05-19 03:44:54 +00:00
|
|
|
FBXMeshGeometry.cpp
|
|
|
|
FBXMaterial.cpp
|
|
|
|
FBXModel.cpp
|
|
|
|
FBXAnimation.cpp
|
|
|
|
FBXNodeAttribute.cpp
|
|
|
|
FBXDeformer.cpp
|
|
|
|
FBXBinaryTokenizer.cpp
|
|
|
|
FBXDocumentUtil.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET( PostProcessing_SRCS
|
|
|
|
CalcTangentsProcess.cpp
|
|
|
|
CalcTangentsProcess.h
|
|
|
|
ComputeUVMappingProcess.cpp
|
|
|
|
ComputeUVMappingProcess.h
|
|
|
|
ConvertToLHProcess.cpp
|
|
|
|
ConvertToLHProcess.h
|
|
|
|
FindDegenerates.cpp
|
|
|
|
FindDegenerates.h
|
|
|
|
FindInstancesProcess.cpp
|
|
|
|
FindInstancesProcess.h
|
|
|
|
FindInvalidDataProcess.cpp
|
|
|
|
FindInvalidDataProcess.h
|
|
|
|
FixNormalsStep.cpp
|
|
|
|
FixNormalsStep.h
|
|
|
|
GenFaceNormalsProcess.cpp
|
|
|
|
GenFaceNormalsProcess.h
|
|
|
|
GenVertexNormalsProcess.cpp
|
|
|
|
GenVertexNormalsProcess.h
|
|
|
|
PretransformVertices.cpp
|
|
|
|
PretransformVertices.h
|
|
|
|
ImproveCacheLocality.cpp
|
|
|
|
ImproveCacheLocality.h
|
|
|
|
JoinVerticesProcess.cpp
|
|
|
|
JoinVerticesProcess.h
|
|
|
|
LimitBoneWeightsProcess.cpp
|
|
|
|
LimitBoneWeightsProcess.h
|
|
|
|
RemoveRedundantMaterials.cpp
|
|
|
|
RemoveRedundantMaterials.h
|
|
|
|
RemoveVCProcess.cpp
|
|
|
|
RemoveVCProcess.h
|
|
|
|
SortByPTypeProcess.cpp
|
|
|
|
SortByPTypeProcess.h
|
|
|
|
SplitLargeMeshes.cpp
|
|
|
|
SplitLargeMeshes.h
|
|
|
|
TextureTransform.cpp
|
|
|
|
TextureTransform.h
|
|
|
|
TriangulateProcess.cpp
|
|
|
|
TriangulateProcess.h
|
|
|
|
ValidateDataStructure.cpp
|
|
|
|
ValidateDataStructure.h
|
|
|
|
OptimizeGraph.cpp
|
|
|
|
OptimizeGraph.h
|
|
|
|
OptimizeMeshes.cpp
|
|
|
|
OptimizeMeshes.h
|
|
|
|
DeboneProcess.cpp
|
|
|
|
DeboneProcess.h
|
|
|
|
ProcessHelper.h
|
|
|
|
ProcessHelper.cpp
|
|
|
|
PolyTools.h
|
|
|
|
MakeVerboseFormat.cpp
|
|
|
|
MakeVerboseFormat.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( PostProcessing FILES ${PostProcessing_SRCS})
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( Q3D
|
2015-05-19 03:44:54 +00:00
|
|
|
Q3DLoader.cpp
|
|
|
|
Q3DLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( Q3BSP
|
2015-05-19 03:44:54 +00:00
|
|
|
Q3BSPFileData.h
|
|
|
|
Q3BSPFileParser.h
|
|
|
|
Q3BSPFileParser.cpp
|
|
|
|
Q3BSPFileImporter.h
|
|
|
|
Q3BSPFileImporter.cpp
|
|
|
|
Q3BSPZipArchive.h
|
|
|
|
Q3BSPZipArchive.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( RAW
|
2015-05-19 03:44:54 +00:00
|
|
|
RawLoader.cpp
|
|
|
|
RawLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( SIB
|
2015-12-14 06:14:19 +00:00
|
|
|
SIBImporter.cpp
|
|
|
|
SIBImporter.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( SMD
|
2015-05-19 03:44:54 +00:00
|
|
|
SMDLoader.cpp
|
|
|
|
SMDLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( STL
|
2015-05-19 03:44:54 +00:00
|
|
|
STLLoader.cpp
|
|
|
|
STLLoader.h
|
|
|
|
STLExporter.h
|
|
|
|
STLExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( TERRAGEN
|
2015-05-19 03:44:54 +00:00
|
|
|
TerragenLoader.cpp
|
|
|
|
TerragenLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( 3D
|
2015-05-19 03:44:54 +00:00
|
|
|
UnrealLoader.cpp
|
|
|
|
UnrealLoader.h
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( X
|
2015-05-19 03:44:54 +00:00
|
|
|
XFileHelper.h
|
|
|
|
XFileImporter.cpp
|
|
|
|
XFileImporter.h
|
|
|
|
XFileParser.cpp
|
|
|
|
XFileParser.h
|
|
|
|
XFileExporter.h
|
|
|
|
XFileExporter.cpp
|
|
|
|
)
|
|
|
|
|
2016-09-29 15:50:24 +00:00
|
|
|
ADD_ASSIMP_IMPORTER(X3D
|
2016-10-04 20:58:51 +00:00
|
|
|
X3DExporter.cpp
|
|
|
|
X3DExporter.hpp
|
2016-09-29 15:50:24 +00:00
|
|
|
X3DImporter.cpp
|
|
|
|
X3DImporter.hpp
|
|
|
|
X3DImporter_Geometry2D.cpp
|
|
|
|
X3DImporter_Geometry3D.cpp
|
|
|
|
X3DImporter_Group.cpp
|
|
|
|
X3DImporter_Light.cpp
|
2016-10-02 14:27:13 +00:00
|
|
|
X3DImporter_Macro.hpp
|
2016-09-29 15:50:24 +00:00
|
|
|
X3DImporter_Metadata.cpp
|
|
|
|
X3DImporter_Networking.cpp
|
|
|
|
X3DImporter_Node.hpp
|
|
|
|
X3DImporter_Postprocess.cpp
|
|
|
|
X3DImporter_Rendering.cpp
|
|
|
|
X3DImporter_Shape.cpp
|
|
|
|
X3DImporter_Texturing.cpp
|
|
|
|
)
|
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( GLTF
|
2015-11-29 18:13:51 +00:00
|
|
|
glTFAsset.h
|
|
|
|
glTFAsset.inl
|
|
|
|
glTFAssetWriter.h
|
|
|
|
glTFAssetWriter.inl
|
2015-11-26 01:36:22 +00:00
|
|
|
glTFImporter.cpp
|
|
|
|
glTFImporter.h
|
2015-11-27 00:16:48 +00:00
|
|
|
glTFExporter.h
|
|
|
|
glTFExporter.cpp
|
2015-11-25 21:03:39 +00:00
|
|
|
)
|
|
|
|
|
2016-05-07 12:16:33 +00:00
|
|
|
|
2016-06-14 18:27:40 +00:00
|
|
|
ADD_ASSIMP_IMPORTER( 3MF
|
2016-05-07 12:16:33 +00:00
|
|
|
D3MFImporter.h
|
|
|
|
D3MFImporter.cpp
|
|
|
|
D3MFOpcPackage.h
|
|
|
|
D3MFOpcPackage.cpp
|
|
|
|
)
|
|
|
|
|
2015-05-19 03:44:54 +00:00
|
|
|
SET( Step_SRCS
|
|
|
|
StepExporter.h
|
|
|
|
StepExporter.cpp
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Step FILES ${Step_SRCS})
|
|
|
|
|
|
|
|
SET( Exporter_SRCS
|
|
|
|
Exporter.cpp
|
|
|
|
AssimpCExport.cpp
|
|
|
|
BlobIOSystem.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Exporter FILES ${Exporter_SRCS})
|
|
|
|
|
|
|
|
SET( Extra_SRCS
|
|
|
|
MD4FileData.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Extra FILES ${Extra_SRCS})
|
|
|
|
|
|
|
|
SET( IrrXML_SRCS
|
|
|
|
irrXMLWrapper.h
|
|
|
|
../contrib/irrXML/CXMLReaderImpl.h
|
|
|
|
../contrib/irrXML/heapsort.h
|
|
|
|
../contrib/irrXML/irrArray.h
|
|
|
|
../contrib/irrXML/irrString.h
|
|
|
|
../contrib/irrXML/irrTypes.h
|
|
|
|
../contrib/irrXML/irrXML.cpp
|
|
|
|
../contrib/irrXML/irrXML.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( IrrXML FILES ${IrrXML_SRCS})
|
|
|
|
|
|
|
|
SET( ConvertUTF_SRCS
|
|
|
|
../contrib/ConvertUTF/ConvertUTF.h
|
|
|
|
../contrib/ConvertUTF/ConvertUTF.c
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( ConvertUTF FILES ${ConvertUTF_SRCS})
|
|
|
|
|
|
|
|
SET( Clipper_SRCS
|
|
|
|
../contrib/clipper/clipper.hpp
|
|
|
|
../contrib/clipper/clipper.cpp
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Clipper FILES ${Clipper_SRCS})
|
|
|
|
|
|
|
|
SET( Poly2Tri_SRCS
|
|
|
|
../contrib/poly2tri/poly2tri/common/shapes.cc
|
|
|
|
../contrib/poly2tri/poly2tri/common/shapes.h
|
|
|
|
../contrib/poly2tri/poly2tri/common/utils.h
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/advancing_front.h
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/advancing_front.cc
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/cdt.cc
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/cdt.h
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/sweep.cc
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/sweep.h
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/sweep_context.cc
|
|
|
|
../contrib/poly2tri/poly2tri/sweep/sweep_context.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( Poly2Tri FILES ${Poly2Tri_SRCS})
|
|
|
|
|
|
|
|
SET( unzip_SRCS
|
|
|
|
../contrib/unzip/crypt.h
|
|
|
|
../contrib/unzip/ioapi.c
|
|
|
|
../contrib/unzip/ioapi.h
|
|
|
|
../contrib/unzip/unzip.c
|
|
|
|
../contrib/unzip/unzip.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( unzip FILES ${unzip_SRCS})
|
|
|
|
|
|
|
|
SET ( openddl_parser_SRCS
|
|
|
|
../contrib/openddlparser/code/OpenDDLParser.cpp
|
|
|
|
../contrib/openddlparser/code/DDLNode.cpp
|
2015-10-01 18:29:15 +00:00
|
|
|
../contrib/openddlparser/code/OpenDDLCommon.cpp
|
|
|
|
../contrib/openddlparser/code/OpenDDLExport.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
../contrib/openddlparser/code/Value.cpp
|
|
|
|
../contrib/openddlparser/include/openddlparser/OpenDDLParser.h
|
|
|
|
../contrib/openddlparser/include/openddlparser/OpenDDLParserUtils.h
|
|
|
|
../contrib/openddlparser/include/openddlparser/OpenDDLCommon.h
|
2015-10-01 18:29:15 +00:00
|
|
|
../contrib/openddlparser/include/openddlparser/OpenDDLExport.h
|
2015-05-19 03:44:54 +00:00
|
|
|
../contrib/openddlparser/include/openddlparser/DDLNode.h
|
|
|
|
../contrib/openddlparser/include/openddlparser/Value.h
|
|
|
|
)
|
|
|
|
SOURCE_GROUP( openddl_parser FILES ${openddl_parser_SRCS})
|
|
|
|
|
2016-08-03 00:40:53 +00:00
|
|
|
SET ( open3dgc_SRCS
|
2016-09-09 13:38:43 +00:00
|
|
|
../contrib/Open3DGC/o3dgcAdjacencyInfo.h
|
2016-08-03 00:40:53 +00:00
|
|
|
../contrib/Open3DGC/o3dgcArithmeticCodec.cpp
|
2016-09-09 13:38:43 +00:00
|
|
|
../contrib/Open3DGC/o3dgcArithmeticCodec.h
|
|
|
|
../contrib/Open3DGC/o3dgcBinaryStream.h
|
|
|
|
../contrib/Open3DGC/o3dgcCommon.h
|
|
|
|
../contrib/Open3DGC/o3dgcDVEncodeParams.h
|
2016-08-03 00:40:53 +00:00
|
|
|
../contrib/Open3DGC/o3dgcDynamicVectorDecoder.cpp
|
2016-09-09 13:38:43 +00:00
|
|
|
../contrib/Open3DGC/o3dgcDynamicVectorDecoder.h
|
2016-08-03 00:40:53 +00:00
|
|
|
../contrib/Open3DGC/o3dgcDynamicVectorEncoder.cpp
|
2016-09-09 13:38:43 +00:00
|
|
|
../contrib/Open3DGC/o3dgcDynamicVectorEncoder.h
|
|
|
|
../contrib/Open3DGC/o3dgcDynamicVector.h
|
|
|
|
../contrib/Open3DGC/o3dgcFIFO.h
|
|
|
|
../contrib/Open3DGC/o3dgcIndexedFaceSet.h
|
|
|
|
../contrib/Open3DGC/o3dgcIndexedFaceSet.inl
|
|
|
|
../contrib/Open3DGC/o3dgcSC3DMCDecoder.h
|
|
|
|
../contrib/Open3DGC/o3dgcSC3DMCDecoder.inl
|
|
|
|
../contrib/Open3DGC/o3dgcSC3DMCEncodeParams.h
|
|
|
|
../contrib/Open3DGC/o3dgcSC3DMCEncoder.h
|
|
|
|
../contrib/Open3DGC/o3dgcSC3DMCEncoder.inl
|
|
|
|
../contrib/Open3DGC/o3dgcTimer.h
|
2016-08-03 00:40:53 +00:00
|
|
|
../contrib/Open3DGC/o3dgcTools.cpp
|
|
|
|
../contrib/Open3DGC/o3dgcTriangleFans.cpp
|
2016-09-09 13:38:43 +00:00
|
|
|
../contrib/Open3DGC/o3dgcTriangleFans.h
|
|
|
|
../contrib/Open3DGC/o3dgcTriangleListDecoder.h
|
|
|
|
../contrib/Open3DGC/o3dgcTriangleListDecoder.inl
|
|
|
|
../contrib/Open3DGC/o3dgcTriangleListEncoder.h
|
|
|
|
../contrib/Open3DGC/o3dgcTriangleListEncoder.inl
|
|
|
|
../contrib/Open3DGC/o3dgcVector.h
|
|
|
|
../contrib/Open3DGC/o3dgcVector.inl
|
2016-08-03 00:40:53 +00:00
|
|
|
)
|
|
|
|
SOURCE_GROUP( open3dgc FILES ${open3dgc_SRCS})
|
|
|
|
|
2016-08-14 13:27:16 +00:00
|
|
|
# Check dependencies for glTF importer with Open3DGC-compression.
|
|
|
|
# RT-extensions is used in "contrib/Open3DGC/o3dgcTimer.h" for collecting statistics. Pointed file
|
|
|
|
# has implementation for different platforms: WIN32, __MACH__ and other ("else" block).
|
|
|
|
FIND_PACKAGE(RT QUIET)
|
|
|
|
IF (RT_FOUND OR MSVC)
|
2016-09-13 10:29:12 +00:00
|
|
|
SET( ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC 1 )
|
|
|
|
ADD_DEFINITIONS( -DASSIMP_IMPORTER_GLTF_USE_OPEN3DGC=1 )
|
2016-08-14 13:27:16 +00:00
|
|
|
ELSE ()
|
|
|
|
SET (open3dgc_SRCS "")
|
|
|
|
MESSAGE (INFO " RT-extension not found. glTF import/export will be built without Open3DGC-compression.")
|
|
|
|
#!TODO: off course is better to remove statistics timers from o3dgc codec. Or propose to choose what to use.
|
|
|
|
ENDIF ()
|
2016-08-03 00:40:53 +00:00
|
|
|
|
2015-11-26 01:36:22 +00:00
|
|
|
INCLUDE_DIRECTORIES( "../contrib/rapidjson/include" )
|
2016-08-03 00:40:53 +00:00
|
|
|
INCLUDE_DIRECTORIES( "../contrib" )
|
2015-11-26 01:36:22 +00:00
|
|
|
|
2015-05-19 03:44:54 +00:00
|
|
|
# VC2010 fixes
|
|
|
|
if(MSVC10)
|
|
|
|
option( VC10_STDINT_FIX "Fix for VC10 Compiler regarding pstdint.h redefinition errors" OFF )
|
|
|
|
if( VC10_STDINT_FIX )
|
|
|
|
ADD_DEFINITIONS( -D_STDINT )
|
|
|
|
endif( VC10_STDINT_FIX )
|
|
|
|
endif(MSVC10)
|
|
|
|
|
|
|
|
ADD_DEFINITIONS( -DASSIMP_BUILD_DLL_EXPORT )
|
|
|
|
|
|
|
|
if ( MSVC )
|
|
|
|
ADD_DEFINITIONS( -D_SCL_SECURE_NO_WARNINGS )
|
|
|
|
ADD_DEFINITIONS( -D_CRT_SECURE_NO_WARNINGS )
|
|
|
|
endif ( MSVC )
|
|
|
|
|
|
|
|
if (UNZIP_FOUND)
|
|
|
|
SET (unzip_compile_SRCS "")
|
|
|
|
else (UNZIP_FOUND)
|
|
|
|
SET (unzip_compile_SRCS ${unzip_SRCS})
|
2016-08-14 09:44:21 +00:00
|
|
|
INCLUDE_DIRECTORIES( "../contrib/unzip/" )
|
2015-05-19 03:44:54 +00:00
|
|
|
endif (UNZIP_FOUND)
|
|
|
|
|
|
|
|
MESSAGE(STATUS "Enabled formats:${ASSIMP_IMPORTERS_ENABLED}")
|
|
|
|
MESSAGE(STATUS "Disabled formats:${ASSIMP_IMPORTERS_DISABLED}")
|
|
|
|
|
|
|
|
SET( assimp_src
|
|
|
|
# Assimp Files
|
|
|
|
${Core_SRCS}
|
|
|
|
${Common_SRCS}
|
|
|
|
${Logging_SRCS}
|
|
|
|
${Exporter_SRCS}
|
|
|
|
${PostProcessing_SRCS}
|
|
|
|
${MaterialSystem_SRCS}
|
|
|
|
${Step_SRCS}
|
|
|
|
|
|
|
|
# Model Support
|
|
|
|
${ASSIMP_LOADER_SRCS}
|
|
|
|
|
|
|
|
# Third-party libraries
|
|
|
|
${IrrXML_SRCS}
|
|
|
|
${ConvertUTF_SRCS}
|
|
|
|
${unzip_compile_SRCS}
|
|
|
|
${Poly2Tri_SRCS}
|
|
|
|
${Clipper_SRCS}
|
|
|
|
${openddl_parser_SRCS}
|
2016-08-03 00:40:53 +00:00
|
|
|
${open3dgc_SRCS}
|
2015-05-19 03:44:54 +00:00
|
|
|
# Necessary to show the headers in the project when using the VC++ generator:
|
|
|
|
|
|
|
|
${PUBLIC_HEADERS}
|
|
|
|
${COMPILER_HEADERS}
|
|
|
|
|
|
|
|
)
|
2016-04-23 07:42:05 +00:00
|
|
|
ADD_DEFINITIONS( -DOPENDDLPARSER_BUILD )
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2015-06-28 22:09:18 +00:00
|
|
|
INCLUDE_DIRECTORIES(
|
2015-05-19 03:44:54 +00:00
|
|
|
../contrib/openddlparser/include
|
|
|
|
)
|
|
|
|
|
|
|
|
IF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
|
|
|
SET( assimp_src ${assimp_src} ${C4D_SRCS})
|
|
|
|
INCLUDE_DIRECTORIES(${C4D_INCLUDES})
|
|
|
|
ENDIF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
|
|
|
|
|
|
|
ADD_LIBRARY( assimp ${assimp_src} )
|
|
|
|
|
|
|
|
TARGET_LINK_LIBRARIES(assimp ${ZLIB_LIBRARIES} ${OPENDDL_PARSER_LIBRARIES} )
|
|
|
|
|
|
|
|
if(ANDROID AND ASSIMP_ANDROID_JNIIOSYSTEM)
|
|
|
|
set(ASSIMP_ANDROID_JNIIOSYSTEM_PATH port/AndroidJNI)
|
|
|
|
add_subdirectory(../${ASSIMP_ANDROID_JNIIOSYSTEM_PATH}/ ../${ASSIMP_ANDROID_JNIIOSYSTEM_PATH}/)
|
|
|
|
target_link_libraries(assimp android_jniiosystem)
|
|
|
|
endif(ANDROID AND ASSIMP_ANDROID_JNIIOSYSTEM)
|
|
|
|
|
|
|
|
IF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
2016-07-01 14:57:45 +00:00
|
|
|
TARGET_LINK_LIBRARIES(assimp optimized ${C4D_RELEASE_LIBRARIES})
|
|
|
|
TARGET_LINK_LIBRARIES(assimp debug ${C4D_DEBUG_LIBRARIES})
|
2015-05-19 03:44:54 +00:00
|
|
|
TARGET_LINK_LIBRARIES(assimp ${C4D_EXTRA_LIBRARIES})
|
|
|
|
ENDIF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
|
|
|
|
|
|
|
if( MSVC )
|
|
|
|
# in order to prevent DLL hell, each of the DLLs have to be suffixed with the major version and msvc prefix
|
|
|
|
if( MSVC70 OR MSVC71 )
|
|
|
|
set(MSVC_PREFIX "vc70")
|
|
|
|
elseif( MSVC80 )
|
|
|
|
set(MSVC_PREFIX "vc80")
|
|
|
|
elseif( MSVC90 )
|
|
|
|
set(MSVC_PREFIX "vc90")
|
|
|
|
elseif( MSVC10 )
|
|
|
|
set(MSVC_PREFIX "vc100")
|
|
|
|
elseif( MSVC11 )
|
|
|
|
set(MSVC_PREFIX "vc110")
|
|
|
|
elseif( MSVC12 )
|
|
|
|
set(MSVC_PREFIX "vc120")
|
2015-12-09 20:58:29 +00:00
|
|
|
elseif( MSVC14 )
|
|
|
|
set(MSVC_PREFIX "vc140")
|
2015-05-19 03:44:54 +00:00
|
|
|
else()
|
2015-12-09 20:58:29 +00:00
|
|
|
set(MSVC_PREFIX "vc150")
|
2015-05-19 03:44:54 +00:00
|
|
|
endif()
|
|
|
|
set(LIBRARY_SUFFIX "${ASSIMP_LIBRARY_SUFFIX}-${MSVC_PREFIX}-mt" CACHE STRING "the suffix for the assimp windows library")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
SET_TARGET_PROPERTIES( assimp PROPERTIES
|
|
|
|
VERSION ${ASSIMP_VERSION}
|
|
|
|
SOVERSION ${ASSIMP_SOVERSION} # use full version
|
|
|
|
OUTPUT_NAME assimp${LIBRARY_SUFFIX}
|
|
|
|
)
|
|
|
|
|
|
|
|
if (APPLE)
|
2016-06-17 18:42:19 +00:00
|
|
|
SET_TARGET_PROPERTIES( assimp PROPERTIES INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/${ASSIMP_LIB_INSTALL_DIR}")
|
2015-05-19 03:44:54 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Build against external unzip, or add ../contrib/unzip so
|
|
|
|
# assimp can #include "unzip.h"
|
|
|
|
if (UNZIP_FOUND)
|
|
|
|
INCLUDE_DIRECTORIES(${UNZIP_INCLUDE_DIRS})
|
|
|
|
TARGET_LINK_LIBRARIES(assimp ${UNZIP_LIBRARIES})
|
|
|
|
else (UNZIP_FOUND)
|
2016-06-14 18:27:40 +00:00
|
|
|
INCLUDE_DIRECTORIES("../")
|
2015-05-19 03:44:54 +00:00
|
|
|
endif (UNZIP_FOUND)
|
|
|
|
|
2016-08-14 13:27:16 +00:00
|
|
|
# Add RT-extension library for glTF importer with Open3DGC-compression.
|
|
|
|
IF (RT_FOUND AND ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC)
|
2016-09-15 17:39:39 +00:00
|
|
|
TARGET_LINK_LIBRARIES(assimp ${RT_LIBRARY})
|
2016-08-14 13:27:16 +00:00
|
|
|
ENDIF (RT_FOUND AND ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC)
|
|
|
|
|
2015-05-19 03:44:54 +00:00
|
|
|
INSTALL( TARGETS assimp
|
|
|
|
LIBRARY DESTINATION ${ASSIMP_LIB_INSTALL_DIR}
|
|
|
|
ARCHIVE DESTINATION ${ASSIMP_LIB_INSTALL_DIR}
|
|
|
|
RUNTIME DESTINATION ${ASSIMP_BIN_INSTALL_DIR}
|
|
|
|
COMPONENT ${LIBASSIMP_COMPONENT})
|
|
|
|
INSTALL( FILES ${PUBLIC_HEADERS} DESTINATION ${ASSIMP_INCLUDE_INSTALL_DIR}/assimp COMPONENT assimp-dev)
|
|
|
|
INSTALL( FILES ${COMPILER_HEADERS} DESTINATION ${ASSIMP_INCLUDE_INSTALL_DIR}/assimp/Compiler COMPONENT assimp-dev)
|
|
|
|
if (ASSIMP_ANDROID_JNIIOSYSTEM)
|
2015-11-16 06:48:17 +00:00
|
|
|
INSTALL(FILES ${HEADER_PATH}/${ASSIMP_ANDROID_JNIIOSYSTEM_PATH}/AndroidJNIIOSystem.h
|
2015-05-19 03:44:54 +00:00
|
|
|
DESTINATION ${ASSIMP_INCLUDE_INSTALL_DIR}
|
|
|
|
COMPONENT assimp-dev)
|
|
|
|
endif(ASSIMP_ANDROID_JNIIOSYSTEM)
|
|
|
|
|
|
|
|
if(MSVC AND ASSIMP_INSTALL_PDB)
|
2016-02-11 13:24:26 +00:00
|
|
|
install(FILES ${Assimp_BINARY_DIR}/code/Debug/assimp${LIBRARY_SUFFIX}${CMAKE_DEBUG_POSTFIX}.pdb
|
2015-05-19 03:44:54 +00:00
|
|
|
DESTINATION ${ASSIMP_LIB_INSTALL_DIR}
|
|
|
|
CONFIGURATIONS Debug
|
|
|
|
)
|
|
|
|
install(FILES ${Assimp_BINARY_DIR}/code/RelWithDebInfo/assimp.pdb
|
|
|
|
DESTINATION ${ASSIMP_LIB_INSTALL_DIR}
|
|
|
|
CONFIGURATIONS RelWithDebInfo
|
|
|
|
)
|
|
|
|
endif ()
|