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>2008-12-14 16:24:22 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-14 16:24:22 +0300
commit914a0aa8f474a9991f34c7dc40c2ea85b4d936ed (patch)
tree60d7b551e98416eb3d5abdf76a47b61dfbe04c30 /source/blender
parent8beed4b033a14e8943d7af3229d607592a10c968 (diff)
* missing include path
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_file/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_file/SConscript b/source/blender/editors/space_file/SConscript
index b08d6169e13..832fbc296aa 100644
--- a/source/blender/editors/space_file/SConscript
+++ b/source/blender/editors/space_file/SConscript
@@ -4,6 +4,7 @@ Import ('env')
sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../blenloader'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
env.BlenderLib ( 'bf_editors_space_file', sources, Split(incs), [], libtype=['core','intern'], priority=[35, 40] )