2016-04-23 07:42:05 +00:00
|
|
|
# Open Asset Import Library (assimp)
|
|
|
|
# ----------------------------------------------------------------------
|
2016-05-16 19:17:58 +00:00
|
|
|
#
|
2020-01-20 13:53:12 +00:00
|
|
|
# Copyright (c) 2006-2020, assimp team
|
2020-08-27 15:05:09 +00:00
|
|
|
#
|
2016-04-23 07:42:05 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#----------------------------------------------------------------------
|
2019-05-24 20:13:55 +00:00
|
|
|
cmake_minimum_required( VERSION 3.0 )
|
2015-05-19 03:44:54 +00:00
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(
|
2018-09-16 15:13:34 +00:00
|
|
|
${Assimp_SOURCE_DIR}/test/unit
|
2016-09-11 14:06:29 +00:00
|
|
|
${Assimp_SOURCE_DIR}/include
|
|
|
|
${Assimp_SOURCE_DIR}/code
|
2015-05-19 03:44:54 +00:00
|
|
|
)
|
2020-08-25 15:30:46 +00:00
|
|
|
|
|
|
|
if(NOT ASSIMP_HUNTER_ENABLED)
|
|
|
|
INCLUDE_DIRECTORIES(
|
|
|
|
${Assimp_SOURCE_DIR}/contrib/gtest/include
|
|
|
|
${Assimp_SOURCE_DIR}/contrib/gtest/
|
2020-10-12 20:47:36 +00:00
|
|
|
${Assimp_SOURCE_DIR}/contrib/pugixml/src
|
2020-08-25 15:30:46 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-03-13 18:15:56 +00:00
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING")
|
|
|
|
endif()
|
2018-12-03 20:24:06 +00:00
|
|
|
|
2015-05-19 03:44:54 +00:00
|
|
|
# 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 )
|
|
|
|
|
2017-11-10 19:40:00 +00:00
|
|
|
SET( COMMON
|
2018-04-02 08:27:05 +00:00
|
|
|
unit/utSimd.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utIOSystem.cpp
|
|
|
|
unit/utIOStreamBuffer.cpp
|
|
|
|
unit/utIssues.cpp
|
|
|
|
unit/utAnim.cpp
|
|
|
|
unit/AssimpAPITest.cpp
|
2020-03-27 11:59:10 +00:00
|
|
|
unit/AssimpAPITest_aiMatrix3x3.cpp
|
|
|
|
unit/AssimpAPITest_aiMatrix4x4.cpp
|
|
|
|
unit/AssimpAPITest_aiQuaternion.cpp
|
|
|
|
unit/AssimpAPITest_aiVector2D.cpp
|
|
|
|
unit/AssimpAPITest_aiVector3D.cpp
|
|
|
|
unit/MathTest.cpp
|
|
|
|
unit/MathTest.h
|
|
|
|
unit/RandomNumberGeneration.h
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utBatchLoader.cpp
|
|
|
|
unit/utDefaultIOStream.cpp
|
|
|
|
unit/utFastAtof.cpp
|
|
|
|
unit/utMetadata.cpp
|
|
|
|
unit/SceneDiffer.h
|
|
|
|
unit/SceneDiffer.cpp
|
2017-07-25 07:37:28 +00:00
|
|
|
unit/UTLogStream.h
|
2016-12-01 09:29:39 +00:00
|
|
|
unit/AbstractImportExportBase.cpp
|
2016-11-11 11:49:05 +00:00
|
|
|
unit/TestIOSystem.h
|
2016-11-30 15:36:45 +00:00
|
|
|
unit/TestModelFactory.h
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utTypes.cpp
|
|
|
|
unit/utVersion.cpp
|
|
|
|
unit/utProfiler.cpp
|
|
|
|
unit/utSharedPPData.cpp
|
|
|
|
unit/utStringUtils.cpp
|
2020-08-11 18:03:23 +00:00
|
|
|
unit/Common/utStandardShapes.cpp
|
2020-01-14 20:44:45 +00:00
|
|
|
unit/Common/uiScene.cpp
|
2018-09-16 15:13:34 +00:00
|
|
|
unit/Common/utLineSplitter.cpp
|
2020-04-26 06:59:52 +00:00
|
|
|
unit/Common/utSpatialSort.cpp
|
2020-06-23 10:55:51 +00:00
|
|
|
unit/Common/utAssertHandler.cpp
|
2020-08-27 15:05:09 +00:00
|
|
|
unit/Common/utXmlParser.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( IMPORTERS
|
2020-01-14 20:44:45 +00:00
|
|
|
unit/ImportExport/Assxml/utAssxmlImportExport.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utLWSImportExport.cpp
|
2018-12-08 21:00:23 +00:00
|
|
|
unit/utLWOImportExport.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utSMDImportExport.cpp
|
|
|
|
unit/utglTFImportExport.cpp
|
|
|
|
unit/utglTF2ImportExport.cpp
|
|
|
|
unit/utHMPImportExport.cpp
|
|
|
|
unit/utIFCImportExport.cpp
|
|
|
|
unit/utFBXImporterExporter.cpp
|
|
|
|
unit/utImporter.cpp
|
2018-11-12 21:26:10 +00:00
|
|
|
unit/ImportExport/utExporter.cpp
|
2017-01-07 16:45:29 +00:00
|
|
|
unit/ut3DImportExport.cpp
|
2017-01-07 16:48:33 +00:00
|
|
|
unit/ut3DSImportExport.cpp
|
2017-01-07 16:33:18 +00:00
|
|
|
unit/utACImportExport.cpp
|
2017-01-07 16:58:31 +00:00
|
|
|
unit/utAMFImportExport.cpp
|
2017-09-07 19:50:35 +00:00
|
|
|
unit/utASEImportExport.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utD3MFImportExport.cpp
|
|
|
|
unit/utQ3DImportExport.cpp
|
|
|
|
unit/utSTLImportExport.cpp
|
|
|
|
unit/utXImporterExporter.cpp
|
|
|
|
unit/utX3DImportExport.cpp
|
|
|
|
unit/utDXFImporterExporter.cpp
|
|
|
|
unit/utPMXImporter.cpp
|
|
|
|
unit/utPLYImportExport.cpp
|
|
|
|
unit/utObjImportExport.cpp
|
|
|
|
unit/utObjTools.cpp
|
|
|
|
unit/utOpenGEXImportExport.cpp
|
|
|
|
unit/utSIBImporter.cpp
|
2016-07-17 11:54:01 +00:00
|
|
|
unit/utBlenderIntermediate.cpp
|
2016-04-20 22:25:50 +00:00
|
|
|
unit/utBlendImportAreaLight.cpp
|
2017-01-07 16:33:18 +00:00
|
|
|
unit/utBlenderImportExport.cpp
|
2016-05-16 19:17:58 +00:00
|
|
|
unit/utBlendImportMaterials.cpp
|
2018-06-16 13:08:19 +00:00
|
|
|
unit/utBlenderWork.cpp
|
2017-01-07 19:27:59 +00:00
|
|
|
unit/utBVHImportExport.cpp
|
2020-05-01 10:49:15 +00:00
|
|
|
unit/utColladaExport.cpp
|
2017-01-07 19:32:35 +00:00
|
|
|
unit/utColladaImportExport.cpp
|
2017-01-07 20:07:41 +00:00
|
|
|
unit/utCSMImportExport.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utB3DImportExport.cpp
|
2019-11-01 16:21:24 +00:00
|
|
|
unit/utM3DImportExport.cpp
|
2018-08-31 19:46:12 +00:00
|
|
|
unit/utMDCImportExport.cpp
|
2018-09-08 17:15:56 +00:00
|
|
|
unit/utAssbinImportExport.cpp
|
2019-07-12 14:08:51 +00:00
|
|
|
unit/ImportExport/utAssjsonImportExport.cpp
|
2018-09-21 14:07:09 +00:00
|
|
|
unit/ImportExport/utCOBImportExport.cpp
|
2018-09-22 13:50:40 +00:00
|
|
|
unit/ImportExport/utOgreImportExport.cpp
|
|
|
|
unit/ImportExport/utQ3BSPFileImportExport.cpp
|
2018-12-03 20:24:06 +00:00
|
|
|
unit/ImportExport/utOFFImportExport.cpp
|
2018-12-26 12:40:22 +00:00
|
|
|
unit/ImportExport/utNFFImportExport.cpp
|
|
|
|
unit/ImportExport/utXGLImportExport.cpp
|
2020-01-10 11:50:16 +00:00
|
|
|
unit/ImportExport/utMD2Importer.cpp
|
2020-01-21 11:42:12 +00:00
|
|
|
unit/ImportExport/utMD3Importer.cpp
|
2020-01-15 11:23:13 +00:00
|
|
|
unit/ImportExport/utMD5Importer.cpp
|
2019-12-16 16:31:41 +00:00
|
|
|
unit/ImportExport/utMDLImporter.cpp
|
|
|
|
unit/ImportExport/MDL/MDLHL1TestFiles.h
|
|
|
|
unit/ImportExport/MDL/utMDLImporter_HL1_ImportSettings.cpp
|
|
|
|
unit/ImportExport/MDL/utMDLImporter_HL1_Materials.cpp
|
|
|
|
unit/ImportExport/MDL/utMDLImporter_HL1_Nodes.cpp
|
2020-02-16 12:06:38 +00:00
|
|
|
#unit/ImportExport/IRR/utIrrImportExport.cpp
|
2020-01-15 12:59:17 +00:00
|
|
|
unit/ImportExport/RAW/utRAWImportExport.cpp
|
2020-03-30 18:33:43 +00:00
|
|
|
unit/ImportExport/Terragen/utTerragenImportExport.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( MATERIAL
|
2015-05-19 03:44:54 +00:00
|
|
|
unit/utMaterialSystem.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
SET( MATH
|
2016-02-15 19:49:18 +00:00
|
|
|
unit/utMatrix3x3.cpp
|
2015-11-07 09:00:55 +00:00
|
|
|
unit/utMatrix4x4.cpp
|
2017-02-21 16:12:22 +00:00
|
|
|
unit/utVector3.cpp
|
2015-05-19 03:44:54 +00:00
|
|
|
)
|
2017-11-10 19:40:00 +00:00
|
|
|
|
2017-10-31 11:24:32 +00:00
|
|
|
SET( POST_PROCESSES
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utImproveCacheLocality.cpp
|
|
|
|
unit/utFixInfacingNormals.cpp
|
|
|
|
unit/utGenNormals.cpp
|
|
|
|
unit/utTriangulate.cpp
|
|
|
|
unit/utTextureTransform.cpp
|
2017-10-31 11:24:32 +00:00
|
|
|
unit/utRemoveRedundantMaterials.cpp
|
|
|
|
unit/utRemoveVCProcess.cpp
|
|
|
|
unit/utScaleProcess.cpp
|
2019-10-26 18:48:34 +00:00
|
|
|
unit/utArmaturePopulate.cpp
|
2017-10-31 11:24:32 +00:00
|
|
|
unit/utJoinVertices.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
unit/utRemoveComments.cpp
|
|
|
|
unit/utRemoveComponent.cpp
|
|
|
|
unit/utVertexTriangleAdjacency.cpp
|
|
|
|
unit/utJoinVertices.cpp
|
|
|
|
unit/utSplitLargeMeshes.cpp
|
|
|
|
unit/utFindDegenerates.cpp
|
|
|
|
unit/utFindInvalidData.cpp
|
|
|
|
unit/utLimitBoneWeights.cpp
|
|
|
|
unit/utPretransformVertices.cpp
|
|
|
|
unit/utScenePreprocessor.cpp
|
|
|
|
unit/utTargetAnimation.cpp
|
|
|
|
unit/utSortByPType.cpp
|
|
|
|
unit/utSceneCombiner.cpp
|
2019-06-24 19:37:53 +00:00
|
|
|
unit/utGenBoundingBoxesProcess.cpp
|
2017-10-31 11:24:32 +00:00
|
|
|
)
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2017-11-11 20:16:26 +00:00
|
|
|
SOURCE_GROUP( UnitTests\\Compiler FILES unit/CCompilerTest.c )
|
2019-07-12 14:08:51 +00:00
|
|
|
SOURCE_GROUP( UnitTests\\Common FILES ${COMMON} )
|
|
|
|
SOURCE_GROUP( UnitTests\\ImportExport FILES ${IMPORTERS} )
|
|
|
|
SOURCE_GROUP( UnitTests\\Material FILES ${MATERIAL} )
|
|
|
|
SOURCE_GROUP( UnitTests\\Math FILES ${MATH} )
|
|
|
|
SOURCE_GROUP( UnitTests\\PostProcess FILES ${POST_PROCESSES})
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2016-09-11 14:06:29 +00:00
|
|
|
add_executable( unit
|
2016-11-16 15:36:22 +00:00
|
|
|
unit/CCompilerTest.c
|
2016-09-11 14:06:29 +00:00
|
|
|
unit/Main.cpp
|
2019-06-09 16:43:56 +00:00
|
|
|
../code/Common/Version.cpp
|
2017-11-10 19:40:00 +00:00
|
|
|
${COMMON}
|
|
|
|
${IMPORTERS}
|
|
|
|
${MATERIAL}
|
|
|
|
${MATH}
|
2020-10-01 14:35:34 +00:00
|
|
|
${POST_PROCESSES}
|
2016-09-11 14:06:29 +00:00
|
|
|
)
|
2015-05-19 03:44:54 +00:00
|
|
|
|
2020-08-25 15:30:46 +00:00
|
|
|
if(ASSIMP_HUNTER_ENABLED)
|
|
|
|
hunter_add_package(GTest)
|
|
|
|
find_package(GTest CONFIG REQUIRED)
|
2020-10-05 17:06:48 +00:00
|
|
|
target_link_libraries(unit GTest::gtest_main GTest::gmock)
|
2020-08-25 15:30:46 +00:00
|
|
|
else()
|
2021-01-06 14:53:41 +00:00
|
|
|
target_sources(unit PUBLIC ${Assimp_SOURCE_DIR}/contrib/gtest/src/gtest-all.cc)
|
2020-08-25 15:30:46 +00:00
|
|
|
endif()
|
|
|
|
|
2020-08-07 20:04:39 +00:00
|
|
|
TARGET_USE_COMMON_OUTPUT_DIRECTORY(unit)
|
|
|
|
|
2016-09-11 14:06:29 +00:00
|
|
|
add_definitions(-DASSIMP_TEST_MODELS_DIR="${CMAKE_CURRENT_LIST_DIR}/models")
|
2018-09-22 13:50:40 +00:00
|
|
|
add_definitions(-DASSIMP_TEST_MODELS_NONBSD_DIR="${CMAKE_CURRENT_LIST_DIR}/models-nonbsd")
|
2017-09-07 19:50:35 +00:00
|
|
|
|
2016-09-11 14:06:29 +00:00
|
|
|
SET_PROPERTY( TARGET assimp PROPERTY DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX} )
|
|
|
|
|
2016-09-11 15:28:20 +00:00
|
|
|
IF( WIN32 )
|
|
|
|
SET( platform_libs )
|
2020-11-11 20:13:17 +00:00
|
|
|
ELSEIF(ANDROID)
|
|
|
|
SET( platform_libs )
|
2020-02-23 12:09:35 +00:00
|
|
|
ELSE()
|
2016-09-11 15:28:20 +00:00
|
|
|
SET( platform_libs pthread )
|
2020-02-23 12:09:35 +00:00
|
|
|
ENDIF()
|
2016-09-11 15:28:20 +00:00
|
|
|
|
2016-11-27 06:34:34 +00:00
|
|
|
IF(MSVC)
|
2020-08-25 15:30:46 +00:00
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
2020-02-23 12:09:35 +00:00
|
|
|
ENDIF()
|
2016-11-27 06:34:34 +00:00
|
|
|
|
2016-09-11 15:28:20 +00:00
|
|
|
target_link_libraries( unit assimp ${platform_libs} )
|
2015-05-19 03:44:54 +00:00
|
|
|
|
|
|
|
add_subdirectory(headercheck)
|
2017-04-17 19:25:57 +00:00
|
|
|
|
|
|
|
add_test( unittests unit )
|