CMake: remove redundant include dir

This commit is contained in:
Campbell Barton 2014-12-06 13:01:47 +01:00
parent 81ae71fcd3
commit 06515475b9
3 changed files with 4 additions and 11 deletions

@ -76,7 +76,7 @@ typedef struct ScanFillIsect {
#if 0
void BKE_scanfill_obj_dump(ScanFillContext *sf_ctx)
void BLI_scanfill_obj_dump(ScanFillContext *sf_ctx)
{
FILE *f = fopen("test.obj", "w");
unsigned int i = 1;
@ -96,7 +96,7 @@ void BKE_scanfill_obj_dump(ScanFillContext *sf_ctx)
#endif
#if 0
void BKE_scanfill_view3d_dump(ScanFillContext *sf_ctx)
void BLI_scanfill_view3d_dump(ScanFillContext *sf_ctx)
{
ScanFillEdge *eed;
@ -508,8 +508,8 @@ bool BLI_scanfill_calc_self_isect(
sf_ctx->poly_nr = SF_POLY_UNSET;
#if 0
BKE_scanfill_view3d_dump(sf_ctx);
BKE_scanfill_obj_dump(sf_ctx);
BLI_scanfill_view3d_dump(sf_ctx);
BLI_scanfill_obj_dump(sf_ctx);
#endif
return changed;

@ -130,12 +130,6 @@ if(WITH_BUILDINFO)
add_definitions(-DWITH_BUILDINFO)
endif()
if(WIN322)
list(APPEND INC
../../../intern/utfconv
)
endif()
if(WITH_COMPOSITOR)
add_definitions(-DWITH_COMPOSITOR)
endif()

@ -65,7 +65,6 @@ if env['WITH_BF_COLLADA']:
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
incs += ' ' + env['BF_PTHREADS_INC']
incs += ' ../../intern/utfconv'
if env['BF_BUILDINFO']:
defs.append('WITH_BUILDINFO')