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:
authorJoshua Leung <aligorith@gmail.com>2012-06-11 06:01:48 +0400
committerJoshua Leung <aligorith@gmail.com>2012-06-11 06:01:48 +0400
commit26164634f8be7b6221cdb8a881b16e05ff56b02b (patch)
tree91b22b765262b4990fca51496c05174fd6457f60 /source/blender/editors/space_sequencer/SConscript
parent128e2cb125cc9ce71a7b89c5b80141f806afed5a (diff)
Build-system fix (for r.47710)
Need add blenfont to list of include directories for sequence editor buildfiles. Was causing build errors on OSX. Thanks Zavigny (IRC report)
Diffstat (limited to 'source/blender/editors/space_sequencer/SConscript')
-rw-r--r--source/blender/editors/space_sequencer/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/SConscript b/source/blender/editors/space_sequencer/SConscript
index 65aadfa1c8a..ec06eacae9c 100644
--- a/source/blender/editors/space_sequencer/SConscript
+++ b/source/blender/editors/space_sequencer/SConscript
@@ -5,7 +5,7 @@ sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
-incs += ' ../../makesrna ../../blenloader'
+incs += ' ../../makesrna ../../blenloader ../../blenfont'
incs += ' #/intern/audaspace/intern'
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):