Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-10-19 09:47:22 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-10-19 09:47:22 +0400
commitf515b579e7ee7a500c896c08afbbdb890c8d153f (patch)
tree739c41af747d34626b398e85023ffc0acf9d697c /source/blender/blenlib/SConscript
parentdb7407077854c0769ba524765f58e88a3096ab51 (diff)
Remove BLI_bfile.c from build process. It is unused, and currently throws error C4013
(ie. previous commit works sweetly ;)
Diffstat (limited to 'source/blender/blenlib/SConscript')
-rw-r--r--source/blender/blenlib/SConscript5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/SConscript b/source/blender/blenlib/SConscript
index 78aecf9936b..9ee03df8d8b 100644
--- a/source/blender/blenlib/SConscript
+++ b/source/blender/blenlib/SConscript
@@ -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']