2016-04-23 07:42:05 +00:00
|
|
|
# Open Asset Import Library (assimp)
|
|
|
|
# ----------------------------------------------------------------------
|
2016-05-16 19:17:58 +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
|
|
|
cmake_minimum_required( VERSION 2.6 )
|
|
|
|
|
|
|
|
INCLUDE( AddGTest )
|
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(
|
|
|
|
${Assimp_SOURCE_DIR}/include
|
|
|
|
${Assimp_SOURCE_DIR}/code
|
|
|
|
)
|
|
|
|
|
|
|
|
# Add the temporary output directories to the library path to make sure the
|
|
|
|
# Assimp library can be found, even if it is not installed system-wide yet.
|
|
|
|
LINK_DIRECTORIES( ${Assimp_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib )
|
|
|
|
|
|
|
|
SOURCE_GROUP( unit FILES
|
|
|
|
unit/CCompilerTest.c
|
|
|
|
)
|
|
|
|
|
|
|
|
SET( TEST_SRCS
|
|
|
|
unit/AssimpAPITest.cpp
|
2016-04-20 22:25:50 +00:00
|
|
|
unit/utBlendImportAreaLight.cpp
|
2016-05-16 19:17:58 +00:00
|
|
|
unit/utBlendImportMaterials.cpp
|
|
|
|
unit/utColladaExportCamera.cpp
|
|
|
|
unit/utColladaExportLight.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
unit/utFastAtof.cpp
|
|
|
|
unit/utFindDegenerates.cpp
|
|
|
|
unit/utFindInvalidData.cpp
|
|
|
|
unit/utFixInfacingNormals.cpp
|
|
|
|
unit/utGenNormals.cpp
|
|
|
|
unit/utImporter.cpp
|
|
|
|
unit/utImproveCacheLocality.cpp
|
2015-08-30 13:21:53 +00:00
|
|
|
unit/utIOSystem.cpp
|
2016-05-16 19:17:58 +00:00
|
|
|
unit/utIssues.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
unit/utJoinVertices.cpp
|
|
|
|
unit/utLimitBoneWeights.cpp
|
|
|
|
unit/utMaterialSystem.cpp
|
2016-02-15 19:49:18 +00:00
|
|
|
unit/utMatrix3x3.cpp
|
2015-11-07 09:00:55 +00:00
|
|
|
unit/utMatrix4x4.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
unit/utPretransformVertices.cpp
|
|
|
|
unit/utRemoveComments.cpp
|
|
|
|
unit/utRemoveComponent.cpp
|
|
|
|
unit/utRemoveRedundantMaterials.cpp
|
|
|
|
unit/utScenePreprocessor.cpp
|
|
|
|
unit/utSharedPPData.cpp
|
2016-06-20 18:30:29 +00:00
|
|
|
unit/utStringUtils.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
unit/utSortByPType.cpp
|
|
|
|
unit/utSplitLargeMeshes.cpp
|
|
|
|
unit/utTargetAnimation.cpp
|
|
|
|
unit/utTextureTransform.cpp
|
|
|
|
unit/utTriangulate.cpp
|
|
|
|
unit/utVertexTriangleAdjacency.cpp
|
2016-07-11 18:56:38 +00:00
|
|
|
unit/utVersion.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SOURCE_GROUP( tests FILES ${TEST_SRCS} )
|
|
|
|
|
|
|
|
if(AddGTest_FOUND)
|
2016-02-05 17:31:19 +00:00
|
|
|
add_executable( unit
|
|
|
|
unit/CCompilerTest.c
|
|
|
|
unit/Main.cpp
|
|
|
|
../code/Version.cpp
|
|
|
|
${TEST_SRCS}
|
|
|
|
)
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2016-02-05 17:31:19 +00:00
|
|
|
add_definitions(-DASSIMP_TEST_MODELS_DIR="${CMAKE_CURRENT_LIST_DIR}/models")
|
2015-06-30 13:26:58 +00:00
|
|
|
|
2016-02-05 17:31:19 +00:00
|
|
|
SET_PROPERTY( TARGET assimp PROPERTY DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX} )
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2016-02-05 17:31:19 +00:00
|
|
|
add_dependencies( unit gtest )
|
|
|
|
target_link_libraries( unit assimp
|
|
|
|
debug ${GTEST_DEBUG_LIBRARIES}
|
|
|
|
optimized ${GTEST_RELEASE_LIBRARIES}
|
|
|
|
)
|
2015-05-19 03:44:54 +00:00
|
|
|
endif(AddGTest_FOUND)
|
|
|
|
add_subdirectory(headercheck)
|