Don't include stm_image implementation if using stb library from Hunter

Hunter compiles its own stb library binaries. Currently a second copy is
compiled by defining STB_IMAGE_IMPLEMENTATION in Assimp.cpp. This may
cause hard to understand bugs if this compiled copy ever becomes
different from what Hunter supplies.
pull/4737/head
Povilas Kanapickas 2022-09-23 04:08:20 +03:00
parent 9a11cabb06
commit 22494bde17
1 changed files with 7 additions and 5 deletions

View File

@ -1273,12 +1273,14 @@ ASSIMP_API void aiQuaternionInterpolate(
#define ASSIMP_HAS_PBRT_EXPORT (!ASSIMP_BUILD_NO_EXPORT && !ASSIMP_BUILD_NO_PBRT_EXPORTER) #define ASSIMP_HAS_PBRT_EXPORT (!ASSIMP_BUILD_NO_EXPORT && !ASSIMP_BUILD_NO_PBRT_EXPORTER)
#define ASSIMP_HAS_M3D ((!ASSIMP_BUILD_NO_EXPORT && !ASSIMP_BUILD_NO_M3D_EXPORTER) || !ASSIMP_BUILD_NO_M3D_IMPORTER) #define ASSIMP_HAS_M3D ((!ASSIMP_BUILD_NO_EXPORT && !ASSIMP_BUILD_NO_M3D_EXPORTER) || !ASSIMP_BUILD_NO_M3D_IMPORTER)
#ifndef STB_USE_HUNTER
# if ASSIMP_HAS_PBRT_EXPORT # if ASSIMP_HAS_PBRT_EXPORT
# define ASSIMP_NEEDS_STB_IMAGE 1 # define ASSIMP_NEEDS_STB_IMAGE 1
# elif ASSIMP_HAS_M3D # elif ASSIMP_HAS_M3D
# define ASSIMP_NEEDS_STB_IMAGE 1 # define ASSIMP_NEEDS_STB_IMAGE 1
# define STBI_ONLY_PNG # define STBI_ONLY_PNG
# endif # endif
#endif
// Ensure all symbols are linked correctly // Ensure all symbols are linked correctly
#if ASSIMP_NEEDS_STB_IMAGE #if ASSIMP_NEEDS_STB_IMAGE