Merge branch 'master' into step-import
commit
e84ccaea15
|
@ -1,21 +0,0 @@
|
||||||
# - Config file for the FooBar package
|
|
||||||
# It defines the following variables
|
|
||||||
# FOOBAR_INCLUDE_DIRS - include directories for FooBar
|
|
||||||
# FOOBAR_LIBRARIES - libraries to link against
|
|
||||||
# FOOBAR_EXECUTABLE - the bar executable
|
|
||||||
|
|
||||||
# Compute paths
|
|
||||||
get_filename_component(FOOBAR_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
||||||
if(EXISTS "${FOOBAR_CMAKE_DIR}/CMakeCache.txt")
|
|
||||||
# In build tree
|
|
||||||
include("${FOOBAR_CMAKE_DIR}/FooBarBuildTreeSettings.cmake")
|
|
||||||
else()
|
|
||||||
set(FOOBAR_INCLUDE_DIRS "${FOOBAR_CMAKE_DIR}/@CONF_REL_INCLUDE_DIR@")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Our library dependencies (contains definitions for IMPORTED targets)
|
|
||||||
include("${FOOBAR_CMAKE_DIR}/FooBarLibraryDepends.cmake")
|
|
||||||
|
|
||||||
# These are IMPORTED targets created by FooBarLibraryDepends.cmake
|
|
||||||
set(FOOBAR_LIBRARIES foo)
|
|
||||||
set(FOOBAR_EXECUTABLE bar)
|
|
53
Build.md
53
Build.md
|
@ -1,7 +1,54 @@
|
||||||
# Build instructions
|
# Install CMake
|
||||||
|
Asset-Importer-Lib supports a lot of different OSes and platforms. We are using cmake to generate the build environment for these via cmake. So you have to make sure that you have a working cmake-installation on your system. You can download it at https://cmake.org/
|
||||||
|
|
||||||
|
# Get the source
|
||||||
|
Make sure you have a working git-installation. Open a command prompt and clone the Asset-Importer-Lib via:
|
||||||
|
```
|
||||||
|
git clone https://github.com/assimp/assimp.git
|
||||||
|
```
|
||||||
|
|
||||||
|
# Build instructions for Windows with Visual-Studio
|
||||||
|
|
||||||
|
First you have to install Visual-Studio on your windows-system. You can get the Community-Version for free here: https://visualstudio.microsoft.com/de/downloads/
|
||||||
|
To generate the build environment for your IDE open a command prompt, navigate to your repo and type:
|
||||||
|
|
||||||
|
```
|
||||||
> cmake CMakeLists.txt
|
> cmake CMakeLists.txt
|
||||||
make -j4
|
```
|
||||||
|
This will generate the project files.
|
||||||
|
|
||||||
##UWP
|
# Build instructions for Windows with UWP
|
||||||
See https://stackoverflow.com/questions/40803170/cmake-uwp-using-cmake-to-build-universal-windows-app
|
See https://stackoverflow.com/questions/40803170/cmake-uwp-using-cmake-to-build-universal-windows-app
|
||||||
|
|
||||||
|
|
||||||
|
# Build instrcutions for Linux / Unix
|
||||||
|
Open a terminal and got to your repository. You can generate the projectfiles and build the library via:
|
||||||
|
|
||||||
|
```
|
||||||
|
cmake CMakeLists.txt
|
||||||
|
make -j4
|
||||||
|
```
|
||||||
|
The option -j descripes the number of parallel processes for the build.
|
||||||
|
|
||||||
|
# CMake build options
|
||||||
|
The cmake-build-environment provides options to configure the build. The following options can be used:
|
||||||
|
- BUILD_SHARED_LIBS ( default ON ): Generation of shared libs ( dll for windows, so for Linux ). Set this to OFF to get a static lib.
|
||||||
|
- BUILD_FRAMEWORK ( default OFF, MacOnly): Build package as Mac OS X Framework bundle
|
||||||
|
- ASSIMP_DOUBLE_PRECISION( default OFF ): All data will be stored as double values.
|
||||||
|
- ASSIMP_OPT_BUILD_PACKAGES ( default OFF): Set to ON to generate CPack configuration files and packaging targets
|
||||||
|
- ASSIMP_ANDROID_JNIIOSYSTEM ( default OFF ): Android JNI IOSystem support is active
|
||||||
|
- ASSIMP_NO_EXPORT ( default OFF ): Disable Assimp's export functionality
|
||||||
|
- ASSIMP_BUILD_ZLIB ( default OFF ): Build your own zlib
|
||||||
|
- ASSIMP_BUILD_ASSIMP_TOOLS ( default ON ): If the supplementary tools for Assimp are built in addition to the library.
|
||||||
|
- ASSIMP_BUILD_SAMPLES ( default OFF ): If the official samples are built as well (needs Glut).
|
||||||
|
- ASSIMP_BUILD_TESTS ( default ON ): If the test suite for Assimp is built in addition to the library.
|
||||||
|
- ASSIMP_COVERALLS ( default OFF ): Enable this to measure test coverage.
|
||||||
|
- ASSIMP_WERROR( default OFF ): Treat warnings as errors.
|
||||||
|
- ASSIMP_ASAN ( default OFF ): Enable AddressSanitizer.
|
||||||
|
- ASSIMP_UBSAN ( default OFF ): Enable Undefined Behavior sanitizer.
|
||||||
|
- SYSTEM_IRRXML ( default OFF ): Use system installed Irrlicht/IrrXML library.
|
||||||
|
- BUILD_DOCS ( default OFF ): Build documentation using Doxygen.
|
||||||
|
- INJECT_DEBUG_POSTFIX( default ON ): Inject debug postfix in .a/.so lib names
|
||||||
|
- IGNORE_GIT_HASH ( default OFF ): Don't call git to get the hash.
|
||||||
|
- ASSIMP_INSTALL_PDB ( default ON ): Install MSVC debug files.
|
||||||
|
|
||||||
|
|
|
@ -110,6 +110,11 @@ OPTION( INJECT_DEBUG_POSTFIX
|
||||||
ON
|
ON
|
||||||
)
|
)
|
||||||
|
|
||||||
|
OPTION ( IGNORE_GIT_HASH
|
||||||
|
"Don't call git to get the hash."
|
||||||
|
OFF
|
||||||
|
)
|
||||||
|
|
||||||
IF (IOS)
|
IF (IOS)
|
||||||
IF (NOT CMAKE_BUILD_TYPE)
|
IF (NOT CMAKE_BUILD_TYPE)
|
||||||
SET(CMAKE_BUILD_TYPE "Release")
|
SET(CMAKE_BUILD_TYPE "Release")
|
||||||
|
@ -153,23 +158,25 @@ SET( ASSIMP_PACKAGE_VERSION "0" CACHE STRING "the package-specific version used
|
||||||
# Enable C++1 globally
|
# Enable C++1 globally
|
||||||
set_property( GLOBAL PROPERTY CXX_STANDARD 11 )
|
set_property( GLOBAL PROPERTY CXX_STANDARD 11 )
|
||||||
|
|
||||||
# Get the current working branch
|
IF(NOT IGNORE_GIT_HASH)
|
||||||
EXECUTE_PROCESS(
|
# Get the current working branch
|
||||||
COMMAND git rev-parse --abbrev-ref HEAD
|
EXECUTE_PROCESS(
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
COMMAND git rev-parse --abbrev-ref HEAD
|
||||||
OUTPUT_VARIABLE GIT_BRANCH
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
OUTPUT_VARIABLE GIT_BRANCH
|
||||||
ERROR_QUIET
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
)
|
ERROR_QUIET
|
||||||
|
)
|
||||||
|
|
||||||
# Get the latest abbreviated commit hash of the working branch
|
# Get the latest abbreviated commit hash of the working branch
|
||||||
EXECUTE_PROCESS(
|
EXECUTE_PROCESS(
|
||||||
COMMAND git log -1 --format=%h --no-show-signature
|
COMMAND git log -1 --format=%h --no-show-signature
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
ERROR_QUIET
|
ERROR_QUIET
|
||||||
)
|
)
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
IF(NOT GIT_COMMIT_HASH)
|
IF(NOT GIT_COMMIT_HASH)
|
||||||
SET(GIT_COMMIT_HASH 0)
|
SET(GIT_COMMIT_HASH 0)
|
||||||
|
@ -216,9 +223,7 @@ IF ((CMAKE_C_COMPILER_ID MATCHES "GNU") AND NOT CMAKE_COMPILER_IS_MINGW)
|
||||||
ELSEIF(MSVC)
|
ELSEIF(MSVC)
|
||||||
# enable multi-core compilation with MSVC
|
# enable multi-core compilation with MSVC
|
||||||
ADD_COMPILE_OPTIONS(/MP)
|
ADD_COMPILE_OPTIONS(/MP)
|
||||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
ADD_COMPILE_OPTIONS( /bigobj )
|
||||||
ADD_COMPILE_OPTIONS( /bigobj )
|
|
||||||
ENDIF()
|
|
||||||
# disable "elements of array '' will be default initialized" warning on MSVC2013
|
# disable "elements of array '' will be default initialized" warning on MSVC2013
|
||||||
IF(MSVC12)
|
IF(MSVC12)
|
||||||
ADD_COMPILE_OPTIONS(/wd4351)
|
ADD_COMPILE_OPTIONS(/wd4351)
|
||||||
|
@ -309,8 +314,18 @@ ENDIF()
|
||||||
|
|
||||||
# cmake configuration files
|
# cmake configuration files
|
||||||
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimp-config.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimp-config.cmake" @ONLY IMMEDIATE)
|
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimp-config.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimp-config.cmake" @ONLY IMMEDIATE)
|
||||||
|
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimpTargets.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimpTargets.cmake" @ONLY IMMEDIATE)
|
||||||
|
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimpTargets-debug.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimpTargets-debug.cmake" @ONLY IMMEDIATE)
|
||||||
|
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimpTargets-release.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimpTargets-release.cmake" @ONLY IMMEDIATE)
|
||||||
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimp-config-version.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimp-config-version.cmake" @ONLY IMMEDIATE)
|
CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/assimp-config-version.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/assimp-config-version.cmake" @ONLY IMMEDIATE)
|
||||||
INSTALL(FILES "${CMAKE_CURRENT_BINARY_DIR}/assimp-config.cmake" "${CMAKE_CURRENT_BINARY_DIR}/assimp-config-version.cmake" DESTINATION "${ASSIMP_LIB_INSTALL_DIR}/cmake/assimp-${ASSIMP_VERSION_MAJOR}.${ASSIMP_VERSION_MINOR}" COMPONENT ${LIBASSIMP-DEV_COMPONENT})
|
#we should generated these scripts after CMake VERSION 3.0.2 using export(EXPORT ...) and write_basic_package_version_file(...)
|
||||||
|
INSTALL(FILES
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/assimp-config.cmake"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/assimp-config-version.cmake"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/assimpTargets.cmake"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/assimpTargets-debug.cmake"
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/assimpTargets-release.cmake"
|
||||||
|
DESTINATION "${ASSIMP_LIB_INSTALL_DIR}/cmake/assimp-${ASSIMP_VERSION_MAJOR}.${ASSIMP_VERSION_MINOR}" COMPONENT ${LIBASSIMP-DEV_COMPONENT})
|
||||||
|
|
||||||
FIND_PACKAGE( DirectX )
|
FIND_PACKAGE( DirectX )
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,7 @@ __Exporters__:
|
||||||
- FBX ( experimental )
|
- FBX ( experimental )
|
||||||
|
|
||||||
### Building ###
|
### Building ###
|
||||||
Take a look into the `INSTALL` file. Our build system is CMake, if you used CMake before there is a good chance you know what to do.
|
Take a look into the https://github.com/assimp/assimp/blob/master/Build.md file. Our build system is CMake, if you used CMake before there is a good chance you know what to do.
|
||||||
|
|
||||||
### Ports ###
|
### Ports ###
|
||||||
* [Android](port/AndroidJNI/README.md)
|
* [Android](port/AndroidJNI/README.md)
|
||||||
|
|
|
@ -1,59 +1 @@
|
||||||
# - Find Assimp Installation
|
include(${CMAKE_CURRENT_LIST_DIR}/assimpTargets.cmake)
|
||||||
#
|
|
||||||
# Users can set the following variables before calling the module:
|
|
||||||
# ASSIMP_DIR - The preferred installation prefix for searching for ASSIMP. Set by the user.
|
|
||||||
#
|
|
||||||
# ASSIMP_ROOT_DIR - the root directory where the installation can be found
|
|
||||||
# ASSIMP_CXX_FLAGS - extra flags for compilation
|
|
||||||
# ASSIMP_LINK_FLAGS - extra flags for linking
|
|
||||||
# ASSIMP_INCLUDE_DIRS - include directories
|
|
||||||
# ASSIMP_LIBRARY_DIRS - link directories
|
|
||||||
# ASSIMP_LIBRARIES - libraries to link plugins with
|
|
||||||
# ASSIMP_Boost_VERSION - the boost version assimp was compiled with
|
|
||||||
get_filename_component(ASSIMP_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" REALPATH)
|
|
||||||
|
|
||||||
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")
|
|
||||||
elseif( MSVC14 )
|
|
||||||
set(MSVC_PREFIX "vc140")
|
|
||||||
else()
|
|
||||||
set(MSVC_PREFIX "vc150")
|
|
||||||
endif()
|
|
||||||
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@-${MSVC_PREFIX}-mt" CACHE STRING "the suffix for the assimp windows library" )
|
|
||||||
else()
|
|
||||||
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@" CACHE STRING "the suffix for the openrave libraries" )
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set( ASSIMP_CXX_FLAGS ) # dynamically linked library
|
|
||||||
set( ASSIMP_LINK_FLAGS "" )
|
|
||||||
set( ASSIMP_LIBRARY_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_LIB_INSTALL_DIR@")
|
|
||||||
set( ASSIMP_INCLUDE_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_INCLUDE_INSTALL_DIR@")
|
|
||||||
set( ASSIMP_LIBRARIES assimp${ASSIMP_LIBRARY_SUFFIX})
|
|
||||||
set( ASSIMP_LIBRARIES ${ASSIMP_LIBRARIES}@CMAKE_DEBUG_POSTFIX@)
|
|
||||||
|
|
||||||
# for compatibility with pkg-config
|
|
||||||
set(ASSIMP_CFLAGS_OTHER "${ASSIMP_CXX_FLAGS}")
|
|
||||||
set(ASSIMP_LDFLAGS_OTHER "${ASSIMP_LINK_FLAGS}")
|
|
||||||
|
|
||||||
MARK_AS_ADVANCED(
|
|
||||||
ASSIMP_ROOT_DIR
|
|
||||||
ASSIMP_CXX_FLAGS
|
|
||||||
ASSIMP_LINK_FLAGS
|
|
||||||
ASSIMP_INCLUDE_DIRS
|
|
||||||
ASSIMP_LIBRARIES
|
|
||||||
ASSIMP_CFLAGS_OTHER
|
|
||||||
ASSIMP_LDFLAGS_OTHER
|
|
||||||
ASSIMP_LIBRARY_SUFFIX
|
|
||||||
)
|
|
||||||
|
|
|
@ -0,0 +1,78 @@
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file for configuration "Debug".
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
|
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")
|
||||||
|
elseif( MSVC14 )
|
||||||
|
set(MSVC_PREFIX "vc140")
|
||||||
|
else()
|
||||||
|
set(MSVC_PREFIX "vc150")
|
||||||
|
endif()
|
||||||
|
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@-${MSVC_PREFIX}-mt" CACHE STRING "the suffix for the assimp windows library" )
|
||||||
|
|
||||||
|
set(sharedLibraryName "assimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_DEBUG_POSTFIX@@CMAKE_SHARED_LIBRARY_SUFFIX@")
|
||||||
|
set(importLibraryName "assimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_DEBUG_POSTFIX@@CMAKE_IMPORT_LIBRARY_SUFFIX@")
|
||||||
|
|
||||||
|
# Import target "assimp::assimp" for configuration "Debug"
|
||||||
|
set_property(TARGET assimp::assimp APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||||
|
set_target_properties(assimp::assimp PROPERTIES
|
||||||
|
IMPORTED_IMPLIB_DEBUG "${_IMPORT_PREFIX}/lib/${importLibraryName}"
|
||||||
|
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/bin/${sharedLibraryName}"
|
||||||
|
)
|
||||||
|
list(APPEND _IMPORT_CHECK_TARGETS assimp::assimp )
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/lib/${importLibraryName}")
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/bin/${sharedLibraryName}" )
|
||||||
|
|
||||||
|
else()
|
||||||
|
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@" CACHE STRING "the suffix for the openrave libraries" )
|
||||||
|
set(sharedLibraryName "libassimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_DEBUG_POSTFIX@@CMAKE_SHARED_LIBRARY_SUFFIX@.@ASSIMP_VERSION_MAJOR@")
|
||||||
|
set_target_properties(assimp::assimp PROPERTIES
|
||||||
|
IMPORTED_SONAME_DEBUG "${sharedLibraryName}"
|
||||||
|
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/${sharedLibraryName}"
|
||||||
|
)
|
||||||
|
list(APPEND _IMPORT_CHECK_TARGETS assimp::assimp )
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/lib/${sharedLibraryName}" )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
|
||||||
|
get_filename_component(ASSIMP_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" REALPATH)
|
||||||
|
set( ASSIMP_CXX_FLAGS ) # dynamically linked library
|
||||||
|
set( ASSIMP_LINK_FLAGS "" )
|
||||||
|
set( ASSIMP_LIBRARY_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_LIB_INSTALL_DIR@")
|
||||||
|
set( ASSIMP_INCLUDE_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_INCLUDE_INSTALL_DIR@")
|
||||||
|
set( ASSIMP_LIBRARIES ${sharedLibraryName})
|
||||||
|
|
||||||
|
# for compatibility with pkg-config
|
||||||
|
set(ASSIMP_CFLAGS_OTHER "${ASSIMP_CXX_FLAGS}")
|
||||||
|
set(ASSIMP_LDFLAGS_OTHER "${ASSIMP_LINK_FLAGS}")
|
||||||
|
|
||||||
|
MARK_AS_ADVANCED(
|
||||||
|
ASSIMP_ROOT_DIR
|
||||||
|
ASSIMP_CXX_FLAGS
|
||||||
|
ASSIMP_LINK_FLAGS
|
||||||
|
ASSIMP_INCLUDE_DIRS
|
||||||
|
ASSIMP_LIBRARIES
|
||||||
|
ASSIMP_CFLAGS_OTHER
|
||||||
|
ASSIMP_LDFLAGS_OTHER
|
||||||
|
ASSIMP_LIBRARY_SUFFIX
|
||||||
|
)
|
|
@ -0,0 +1,75 @@
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file for configuration "Release".
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
|
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")
|
||||||
|
elseif( MSVC14 )
|
||||||
|
set(MSVC_PREFIX "vc140")
|
||||||
|
else()
|
||||||
|
set(MSVC_PREFIX "vc150")
|
||||||
|
endif()
|
||||||
|
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@-${MSVC_PREFIX}-mt" CACHE STRING "the suffix for the assimp windows library" )
|
||||||
|
|
||||||
|
set(sharedLibraryName "assimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@")
|
||||||
|
set(importLibraryName "assimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_IMPORT_LIBRARY_SUFFIX@")
|
||||||
|
|
||||||
|
# Import target "assimp::assimp" for configuration "Release"
|
||||||
|
set_property(TARGET assimp::assimp APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
||||||
|
set_target_properties(assimp::assimp PROPERTIES
|
||||||
|
IMPORTED_IMPLIB_RELEASE "${_IMPORT_PREFIX}/lib/${importLibraryName}"
|
||||||
|
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/${sharedLibraryName}"
|
||||||
|
)
|
||||||
|
list(APPEND _IMPORT_CHECK_TARGETS assimp::assimp )
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/lib/${importLibraryName}")
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/bin/${sharedLibraryName}" )
|
||||||
|
|
||||||
|
else()
|
||||||
|
set(ASSIMP_LIBRARY_SUFFIX "@ASSIMP_LIBRARY_SUFFIX@" CACHE STRING "the suffix for the openrave libraries" )
|
||||||
|
set(sharedLibraryName "libassimp${ASSIMP_LIBRARY_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@.@ASSIMP_VERSION_MAJOR@")
|
||||||
|
set_target_properties(assimp::assimp PROPERTIES
|
||||||
|
IMPORTED_SONAME_RELEASE "${sharedLibraryName}"
|
||||||
|
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/${sharedLibraryName}"
|
||||||
|
)
|
||||||
|
list(APPEND _IMPORT_CHECK_TARGETS assimp::assimp )
|
||||||
|
list(APPEND _IMPORT_CHECK_FILES_FOR_assimp::assimp "${_IMPORT_PREFIX}/lib/${sharedLibraryName}" )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
|
||||||
|
get_filename_component(ASSIMP_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" REALPATH)
|
||||||
|
set( ASSIMP_CXX_FLAGS ) # dynamically linked library
|
||||||
|
set( ASSIMP_LINK_FLAGS "" )
|
||||||
|
set( ASSIMP_LIBRARY_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_LIB_INSTALL_DIR@")
|
||||||
|
set( ASSIMP_INCLUDE_DIRS "${ASSIMP_ROOT_DIR}/@ASSIMP_INCLUDE_INSTALL_DIR@")
|
||||||
|
set( ASSIMP_LIBRARIES ${sharedLibraryName})
|
||||||
|
|
||||||
|
# for compatibility with pkg-config
|
||||||
|
set(ASSIMP_CFLAGS_OTHER "${ASSIMP_CXX_FLAGS}")
|
||||||
|
set(ASSIMP_LDFLAGS_OTHER "${ASSIMP_LINK_FLAGS}")
|
||||||
|
|
||||||
|
MARK_AS_ADVANCED(
|
||||||
|
ASSIMP_ROOT_DIR
|
||||||
|
ASSIMP_CXX_FLAGS
|
||||||
|
ASSIMP_LINK_FLAGS
|
||||||
|
ASSIMP_INCLUDE_DIRS
|
||||||
|
ASSIMP_LIBRARIES
|
||||||
|
ASSIMP_CFLAGS_OTHER
|
||||||
|
ASSIMP_LDFLAGS_OTHER
|
||||||
|
ASSIMP_LIBRARY_SUFFIX
|
||||||
|
)
|
|
@ -0,0 +1,101 @@
|
||||||
|
# Generated by CMake
|
||||||
|
|
||||||
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
|
||||||
|
message(FATAL_ERROR "CMake >= 2.6.0 required")
|
||||||
|
endif()
|
||||||
|
cmake_policy(PUSH)
|
||||||
|
cmake_policy(VERSION 2.6)
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file.
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
||||||
|
set(_targetsDefined)
|
||||||
|
set(_targetsNotDefined)
|
||||||
|
set(_expectedTargets)
|
||||||
|
foreach(_expectedTarget assimp::assimp)
|
||||||
|
list(APPEND _expectedTargets ${_expectedTarget})
|
||||||
|
if(NOT TARGET ${_expectedTarget})
|
||||||
|
list(APPEND _targetsNotDefined ${_expectedTarget})
|
||||||
|
endif()
|
||||||
|
if(TARGET ${_expectedTarget})
|
||||||
|
list(APPEND _targetsDefined ${_expectedTarget})
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
|
||||||
|
unset(_targetsDefined)
|
||||||
|
unset(_targetsNotDefined)
|
||||||
|
unset(_expectedTargets)
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
if(NOT "${_targetsDefined}" STREQUAL "")
|
||||||
|
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
|
||||||
|
endif()
|
||||||
|
unset(_targetsDefined)
|
||||||
|
unset(_targetsNotDefined)
|
||||||
|
unset(_expectedTargets)
|
||||||
|
|
||||||
|
|
||||||
|
# Compute the installation prefix relative to this file.
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
if(_IMPORT_PREFIX STREQUAL "/")
|
||||||
|
set(_IMPORT_PREFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Create imported target assimp::assimp
|
||||||
|
add_library(assimp::assimp SHARED IMPORTED)
|
||||||
|
|
||||||
|
set_target_properties(assimp::assimp PROPERTIES
|
||||||
|
COMPATIBLE_INTERFACE_STRING "assimp_MAJOR_VERSION"
|
||||||
|
INTERFACE_assimp_MAJOR_VERSION "1"
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include;${_IMPORT_PREFIX}/include"
|
||||||
|
#INTERFACE_LINK_LIBRARIES "TxtUtils::TxtUtils;MealyMachine::MealyMachine"
|
||||||
|
)
|
||||||
|
|
||||||
|
if(CMAKE_VERSION VERSION_LESS 2.8.12)
|
||||||
|
message(FATAL_ERROR "This file relies on consumers using CMake 2.8.12 or greater.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Load information for each installed configuration.
|
||||||
|
get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
file(GLOB CONFIG_FILES "${_DIR}/assimpTargets-*.cmake")
|
||||||
|
foreach(f ${CONFIG_FILES})
|
||||||
|
include(${f})
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
# Cleanup temporary variables.
|
||||||
|
set(_IMPORT_PREFIX)
|
||||||
|
|
||||||
|
# Loop over all imported files and verify that they actually exist
|
||||||
|
foreach(target ${_IMPORT_CHECK_TARGETS} )
|
||||||
|
foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
|
||||||
|
if(NOT EXISTS "${file}" )
|
||||||
|
message(FATAL_ERROR "The imported target \"${target}\" references the file
|
||||||
|
\"${file}\"
|
||||||
|
but this file does not exist. Possible reasons include:
|
||||||
|
* The file was deleted, renamed, or moved to another location.
|
||||||
|
* An install or uninstall procedure did not complete successfully.
|
||||||
|
* The installation package was faulty and contained
|
||||||
|
\"${CMAKE_CURRENT_LIST_FILE}\"
|
||||||
|
but not all the files it references.
|
||||||
|
")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
unset(_IMPORT_CHECK_FILES_FOR_${target})
|
||||||
|
endforeach()
|
||||||
|
unset(_IMPORT_CHECK_TARGETS)
|
||||||
|
|
||||||
|
# This file does not depend on other imported targets which have
|
||||||
|
# been exported from the same project but in a separate export set.
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
|
@ -58,7 +58,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace D3DS {
|
namespace D3DS {
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include <assimp/Compiler/pushpack1.h>
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
/** Discreet3DS class: Helper class for loading 3ds files. Defines chunks
|
/** Discreet3DS class: Helper class for loading 3ds files. Defines chunks
|
||||||
|
@ -363,7 +363,7 @@ struct Texture {
|
||||||
int iUVSrc;
|
int iUVSrc;
|
||||||
};
|
};
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
/** Helper structure representing a 3ds material */
|
/** Helper structure representing a 3ds material */
|
||||||
|
|
|
@ -915,6 +915,7 @@ IF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
||||||
ENDIF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
ENDIF (ASSIMP_BUILD_NONFREE_C4D_IMPORTER)
|
||||||
|
|
||||||
ADD_LIBRARY( assimp ${assimp_src} )
|
ADD_LIBRARY( assimp ${assimp_src} )
|
||||||
|
ADD_LIBRARY(assimp::asimp ALIAS assimp)
|
||||||
|
|
||||||
TARGET_INCLUDE_DIRECTORIES ( assimp PUBLIC
|
TARGET_INCLUDE_DIRECTORIES ( assimp PUBLIC
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../include>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../include>
|
||||||
|
|
|
@ -314,20 +314,20 @@ private:
|
||||||
++buf;
|
++buf;
|
||||||
comp[ 1 ] = *buf;
|
comp[ 1 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
diffuse.r = static_cast<ai_real>( strtol( comp, NULL, 16 ) ) / 255.0;
|
diffuse.r = static_cast<ai_real>( strtol( comp, NULL, 16 ) ) / ai_real(255.0);
|
||||||
|
|
||||||
|
|
||||||
comp[ 0 ] = *buf;
|
comp[ 0 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
comp[ 1 ] = *buf;
|
comp[ 1 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
diffuse.g = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / 255.0;
|
diffuse.g = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / ai_real(255.0);
|
||||||
|
|
||||||
comp[ 0 ] = *buf;
|
comp[ 0 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
comp[ 1 ] = *buf;
|
comp[ 1 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
diffuse.b = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / 255.0;
|
diffuse.b = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / ai_real(255.0);
|
||||||
|
|
||||||
if(7 == len)
|
if(7 == len)
|
||||||
return true;
|
return true;
|
||||||
|
@ -335,7 +335,7 @@ private:
|
||||||
++buf;
|
++buf;
|
||||||
comp[ 1 ] = *buf;
|
comp[ 1 ] = *buf;
|
||||||
++buf;
|
++buf;
|
||||||
diffuse.a = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / 255.0;
|
diffuse.a = static_cast< ai_real >( strtol( comp, NULL, 16 ) ) / ai_real(255.0);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef INCLUDED_AI_FBX_DOCUMENT_UTIL_H
|
#ifndef INCLUDED_AI_FBX_DOCUMENT_UTIL_H
|
||||||
#define INCLUDED_AI_FBX_DOCUMENT_UTIL_H
|
#define INCLUDED_AI_FBX_DOCUMENT_UTIL_H
|
||||||
|
|
||||||
#include "../include/assimp/defs.h"
|
#include <assimp/defs.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "FBXDocument.h"
|
#include "FBXDocument.h"
|
||||||
|
|
|
@ -46,7 +46,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace HMP {
|
namespace HMP {
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include <assimp/Compiler/pushpack1.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
// to make it easier for us, we test the magic word against both "endianesses"
|
// to make it easier for us, we test the magic word against both "endianesses"
|
||||||
|
@ -131,7 +131,7 @@ struct Vertex_HMP7
|
||||||
int8_t normal_x,normal_y;
|
int8_t normal_x,normal_y;
|
||||||
} PACK_STRUCT;
|
} PACK_STRUCT;
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
|
|
||||||
} //! namespace HMP
|
} //! namespace HMP
|
||||||
} //! namespace Assimp
|
} //! namespace Assimp
|
||||||
|
|
|
@ -51,7 +51,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef AI_MDLFILEHELPER2_H_INC
|
#ifndef AI_MDLFILEHELPER2_H_INC
|
||||||
#define AI_MDLFILEHELPER2_H_INC
|
#define AI_MDLFILEHELPER2_H_INC
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include <assimp/Compiler/pushpack1.h>
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
namespace MDL {
|
namespace MDL {
|
||||||
|
@ -141,7 +141,7 @@ struct Header_HL2 {
|
||||||
int32_t transitionindex;
|
int32_t transitionindex;
|
||||||
} /* PACK_STRUCT */;
|
} /* PACK_STRUCT */;
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
|
|
||||||
}
|
}
|
||||||
} // end namespaces
|
} // end namespaces
|
||||||
|
|
|
@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef ASSIMP_BUILD_NO_IFC_IMPORTER
|
#ifndef ASSIMP_BUILD_NO_IFC_IMPORTER
|
||||||
|
|
||||||
#include "AssimpPCH.h"
|
#include "AssimpPCH.h"
|
||||||
#include "IFCReaderGen4.h"
|
#include "IFCReaderGen_4.h"
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
using namespace IFC;
|
using namespace IFC;
|
||||||
|
|
|
@ -246,7 +246,7 @@ struct Vertex
|
||||||
uint16_t NORMAL;
|
uint16_t NORMAL;
|
||||||
} /*PACK_STRUCT*/;
|
} /*PACK_STRUCT*/;
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
// -------------------------------------------------------------------------------
|
||||||
/** @brief Unpack a Q3 16 bit vector to its full float3 representation
|
/** @brief Unpack a Q3 16 bit vector to its full float3 representation
|
||||||
|
|
|
@ -46,9 +46,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include "../include/assimp/types.h"
|
#include <assimp/types.h>
|
||||||
#include "../include/assimp/mesh.h"
|
#include <assimp/mesh.h>
|
||||||
#include "../include/assimp/anim.h"
|
#include <assimp/anim.h>
|
||||||
|
|
||||||
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__)
|
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__)
|
||||||
# pragma pack(push,1)
|
# pragma pack(push,1)
|
||||||
|
|
|
@ -709,7 +709,7 @@ struct GroupFrame
|
||||||
SimpleFrame *frames;
|
SimpleFrame *frames;
|
||||||
} PACK_STRUCT;
|
} PACK_STRUCT;
|
||||||
|
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------------
|
// -------------------------------------------------------------------------------------
|
||||||
/** \struct IntFace_MDL7
|
/** \struct IntFace_MDL7
|
||||||
|
|
|
@ -170,7 +170,7 @@ namespace glTF2
|
||||||
#include <assimp/pbrmaterial.h>
|
#include <assimp/pbrmaterial.h>
|
||||||
|
|
||||||
#ifdef ASSIMP_API
|
#ifdef ASSIMP_API
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include <assimp/Compiler/pushpack1.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//! For binary .glb files
|
//! For binary .glb files
|
||||||
|
@ -189,7 +189,7 @@ namespace glTF2
|
||||||
} PACK_STRUCT;
|
} PACK_STRUCT;
|
||||||
|
|
||||||
#ifdef ASSIMP_API
|
#ifdef ASSIMP_API
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ namespace glTF
|
||||||
#define AI_GLB_MAGIC_NUMBER "glTF"
|
#define AI_GLB_MAGIC_NUMBER "glTF"
|
||||||
|
|
||||||
#ifdef ASSIMP_API
|
#ifdef ASSIMP_API
|
||||||
#include "./../include/assimp/Compiler/pushpack1.h"
|
#include <assimp/Compiler/pushpack1.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//! For the KHR_binary_glTF extension (binary .glb file)
|
//! For the KHR_binary_glTF extension (binary .glb file)
|
||||||
|
@ -185,7 +185,7 @@ namespace glTF
|
||||||
} PACK_STRUCT;
|
} PACK_STRUCT;
|
||||||
|
|
||||||
#ifdef ASSIMP_API
|
#ifdef ASSIMP_API
|
||||||
#include "./../include/assimp/Compiler/poppack1.h"
|
#include <assimp/Compiler/poppack1.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
// some long includes ....
|
// some long includes ....
|
||||||
#include <irrXML.h>
|
#include <irrXML.h>
|
||||||
#include "./../include/assimp/IOStream.hpp"
|
#include "IOStream.hpp"
|
||||||
#include "BaseImporter.h"
|
#include "BaseImporter.h"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Please check the following github-repo for the source: https://github.com/kebby/assimp-net
|
Please check the following git-repo for the source: https://bitbucket.org/Starnick/assimpnet
|
||||||
|
|
Loading…
Reference in New Issue