Merge pull request #73 from paroj/master

fix include/ define in PostStepRegistry
pull/76/merge
Kim Kulling 2013-08-07 09:17:04 -07:00
commit e9b1754306
1 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@ corresponding preprocessor flag to selectively disable steps.
*/ */
#include "AssimpPCH.h" #include "AssimpPCH.h"
#include "ProcessHelper.h"
#ifndef ASSIMP_BUILD_NO_CALCTANGENTS_PROCESS #ifndef ASSIMP_BUILD_NO_CALCTANGENTS_PROCESS
# include "CalcTangentsProcess.h" # include "CalcTangentsProcess.h"
@ -215,7 +216,7 @@ void GetPostProcessingStepInstanceList(std::vector< BaseProcess* >& out)
#if (!defined ASSIMP_BUILD_NO_FLIPWINDINGORDER_PROCESS) #if (!defined ASSIMP_BUILD_NO_FLIPWINDINGORDER_PROCESS)
out.push_back( new FlipWindingOrderProcess()); out.push_back( new FlipWindingOrderProcess());
#endif #endif
#if (!defined ASSIMP_BUILD_DEBONE_PROCESS) #if (!defined ASSIMP_BUILD_NO_DEBONE_PROCESS)
out.push_back( new DeboneProcess()); out.push_back( new DeboneProcess());
#endif #endif
#if (!defined ASSIMP_BUILD_NO_LIMITBONEWEIGHTS_PROCESS) #if (!defined ASSIMP_BUILD_NO_LIMITBONEWEIGHTS_PROCESS)