Remove BLI_bfile.c from build process. It is unused, and currently throws error C4013

(ie. previous commit works sweetly ;)
This commit is contained in:
Nathan Letwory 2010-10-19 05:47:22 +00:00
parent db74070778
commit f515b579e7

@ -3,6 +3,11 @@ Import ('env')
sources = env.Glob('intern/*.c')
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-vc'):
sources.remove('intern\\BLI_bfile.c')
else:
sources.remove('intern/BLI_bfile.c')
cflags=''
incs = '. ../makesdna ../blenkernel #/intern/guardedalloc #/intern/ghost ../editors/include ../gpu'
incs += ' ' + env['BF_FREETYPE_INC']