Merge branch 'master' of github.com:assimp/assimp into msvc-pch
commit
61b1cf7be1
11
.travis.yml
11
.travis.yml
|
@ -1,12 +1,17 @@
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get install cmake
|
- sudo apt-get install cmake
|
||||||
|
|
||||||
before_script:
|
env:
|
||||||
- cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES
|
- TRAVIS_NO_EXPORT=YES
|
||||||
|
- TRAVIS_NO_EXPORT=NO
|
||||||
|
|
||||||
language: cpp
|
language: cpp
|
||||||
|
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
script: make
|
|
||||||
|
script: cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES -DASSIMP_NO_EXPORT=$TRAVIS_NO_EXPORT && make
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -176,8 +176,6 @@ inline aiReturn aiMaterial::Get<aiString>(const char* pKey,unsigned int type,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
template<class TYPE>
|
template<class TYPE>
|
||||||
aiReturn aiMaterial::AddProperty (const TYPE* pInput,
|
aiReturn aiMaterial::AddProperty (const TYPE* pInput,
|
||||||
|
@ -269,8 +267,6 @@ inline aiReturn aiMaterial::AddProperty<int> (const int* pInput,
|
||||||
pKey,type,index,aiPTI_Integer);
|
pKey,type,index,aiPTI_Integer);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//! @endcond
|
//! @endcond
|
||||||
|
|
||||||
#endif //! AI_MATERIAL_INL_INC
|
#endif //! AI_MATERIAL_INL_INC
|
||||||
|
|
Loading…
Reference in New Issue