Merge branch 'master' into fbxReportAssetIssuesProperly
commit
84ef3dc0fc
|
@ -229,7 +229,6 @@ INCLUDE_DIRECTORIES( BEFORE
|
||||||
include
|
include
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/include
|
${CMAKE_CURRENT_BINARY_DIR}/include
|
||||||
contrib/pugixml/src
|
|
||||||
)
|
)
|
||||||
|
|
||||||
LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules" )
|
LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules" )
|
||||||
|
|
|
@ -862,11 +862,16 @@ SET( Extra_SRCS
|
||||||
SOURCE_GROUP( Extra FILES ${Extra_SRCS})
|
SOURCE_GROUP( Extra FILES ${Extra_SRCS})
|
||||||
|
|
||||||
# pugixml
|
# pugixml
|
||||||
SET( Pugixml_SRCS
|
IF(ASSIMP_HUNTER_ENABLED)
|
||||||
|
hunter_add_package(pugixml)
|
||||||
|
find_package(pugixml CONFIG REQUIRED)
|
||||||
|
ELSE()
|
||||||
|
SET( Pugixml_SRCS
|
||||||
../contrib/pugixml/src/pugiconfig.hpp
|
../contrib/pugixml/src/pugiconfig.hpp
|
||||||
../contrib/pugixml/src/pugixml.hpp
|
../contrib/pugixml/src/pugixml.hpp
|
||||||
)
|
)
|
||||||
SOURCE_GROUP( Contrib\\Pugixml FILES ${Pugixml_SRCS})
|
SOURCE_GROUP( Contrib\\Pugixml FILES ${Pugixml_SRCS})
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
# utf8
|
# utf8
|
||||||
IF(ASSIMP_HUNTER_ENABLED)
|
IF(ASSIMP_HUNTER_ENABLED)
|
||||||
|
@ -1026,6 +1031,7 @@ IF(ASSIMP_HUNTER_ENABLED)
|
||||||
ELSE()
|
ELSE()
|
||||||
INCLUDE_DIRECTORIES( "../contrib/rapidjson/include" )
|
INCLUDE_DIRECTORIES( "../contrib/rapidjson/include" )
|
||||||
INCLUDE_DIRECTORIES( "../contrib" )
|
INCLUDE_DIRECTORIES( "../contrib" )
|
||||||
|
INCLUDE_DIRECTORIES( "../contrib/pugixml/src" )
|
||||||
ADD_DEFINITIONS( -DRAPIDJSON_HAS_STDSTRING=1 )
|
ADD_DEFINITIONS( -DRAPIDJSON_HAS_STDSTRING=1 )
|
||||||
ADD_DEFINITIONS( -DRAPIDJSON_NOMEMBERITERATORCLASS )
|
ADD_DEFINITIONS( -DRAPIDJSON_NOMEMBERITERATORCLASS )
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
@ -1136,6 +1142,7 @@ IF(ASSIMP_HUNTER_ENABLED)
|
||||||
RapidJSON::rapidjson
|
RapidJSON::rapidjson
|
||||||
utf8cpp
|
utf8cpp
|
||||||
zip::zip
|
zip::zip
|
||||||
|
pugixml
|
||||||
)
|
)
|
||||||
ELSE()
|
ELSE()
|
||||||
TARGET_LINK_LIBRARIES(assimp ${ZLIB_LIBRARIES} ${OPENDDL_PARSER_LIBRARIES} )
|
TARGET_LINK_LIBRARIES(assimp ${ZLIB_LIBRARIES} ${OPENDDL_PARSER_LIBRARIES} )
|
||||||
|
|
|
@ -48,6 +48,7 @@ if(NOT ASSIMP_HUNTER_ENABLED)
|
||||||
INCLUDE_DIRECTORIES(
|
INCLUDE_DIRECTORIES(
|
||||||
${Assimp_SOURCE_DIR}/contrib/gtest/include
|
${Assimp_SOURCE_DIR}/contrib/gtest/include
|
||||||
${Assimp_SOURCE_DIR}/contrib/gtest/
|
${Assimp_SOURCE_DIR}/contrib/gtest/
|
||||||
|
${Assimp_SOURCE_DIR}/contrib/pugixml/src
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue