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>2009-01-29 12:57:28 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-29 12:57:28 +0300
commit004fa8c52b2611fe5987db1651f01337a0f0870b (patch)
tree2013a9db1dbf4087d16564628808b4a524a49cd2 /source/blender/blenfont/SConscript
parent595983cd287c2910728022c01727a4db1d15ab23 (diff)
scons compiling fixes for new blenfont module
Diffstat (limited to 'source/blender/blenfont/SConscript')
-rw-r--r--source/blender/blenfont/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenfont/SConscript b/source/blender/blenfont/SConscript
index aa48143efef..a21150661fa 100644
--- a/source/blender/blenfont/SConscript
+++ b/source/blender/blenfont/SConscript
@@ -4,6 +4,8 @@ Import ('env')
sources = env.Glob('intern/*.c')
-incs = '. intern ../blenkernel ../blenlib ../makesdna ../ftfont'
+incs = '. intern #/intern/guardedalloc ../blenkernel ../blenlib ../makesdna ../ftfont'
+
+defs = ''
env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['core'], priority=[210] )