Codebase list assimp / e1466bf
New upstream version 5.0.1~ds0 IOhannes m zmölnig 4 years ago
2 changed file(s) with 9 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
6262 else()
6363 set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@" CACHE STRING "the suffix for the assimp libraries" )
6464 if(ASSIMP_BUILD_SHARED_LIBS)
65 set(sharedLibraryName "libassimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@.@ASSIMP_VERSION_MAJOR@")
65 if(APPLE)
66 set(sharedLibraryName "libassimp${ASSIMP_LIBRARY_SUFFIX}.@ASSIMP_VERSION_MAJOR@@CMAKE_SHARED_LIBRARY_SUFFIX@")
67 else()
68 set(sharedLibraryName "libassimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@.@ASSIMP_VERSION_MAJOR@")
69 endif()
6670 set_target_properties(assimp::assimp PROPERTIES
6771 IMPORTED_SONAME_RELEASE "${sharedLibraryName}"
6872 IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/${sharedLibraryName}"
4545 #include <assimp/scene.h>
4646 #include "ScenePrivate.h"
4747
48 static const unsigned int MajorVersion = 4;
49 static const unsigned int MinorVersion = 1;
48 static const unsigned int MajorVersion = 5;
49 static const unsigned int MinorVersion = 0;
5050
5151 // --------------------------------------------------------------------------------
5252 // Legal information string - don't remove this.
5555 "Open Asset Import Library (Assimp).\n"
5656 "A free C/C++ library to import various 3D file formats into applications\n\n"
5757
58 "(c) 2008-2017, assimp team\n"
58 "(c) 2008-2020, assimp team\n"
5959 "License under the terms and conditions of the 3-clause BSD license\n"
60 "http://assimp.sourceforge.net\n"
60 "https://github.com/assimp/assimp\n"
6161 ;
6262
6363 // ------------------------------------------------------------------------------------------------