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:
authorTon Roosendaal <ton@blender.org>2008-12-23 22:47:33 +0300
committerTon Roosendaal <ton@blender.org>2008-12-23 22:47:33 +0300
commitb38f6e7d184c6226de34bde375aa1ce5332c7665 (patch)
treeffe165247ef5b9c2621e226a62bdc7478ec37219 /source/blender/editors/object/SConscript
parent93d9e7749df0a9fd89360ca9347f2fce1ac5dc29 (diff)
2.5
Object: converted the old horrible editobject.c, now as file: editors/object/object_edit.c Still lots of WIP, I've operatorified "Make Parent". Check here the new API at work: http://pasteall.org/3650/c IMPORTANT NOTE FOR BRECHT: game property defines were clashing with RNA, i've renamed game defines for now.
Diffstat (limited to 'source/blender/editors/object/SConscript')
-rw-r--r--source/blender/editors/object/SConscript11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/editors/object/SConscript b/source/blender/editors/object/SConscript
index e69de29bb2d..65723ddbe16 100644
--- a/source/blender/editors/object/SConscript
+++ b/source/blender/editors/object/SConscript
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc'
+incs += ' #/intern/guardedalloc #intern/bmfont'
+incs += ' ../../makesrna'
+
+env.BlenderLib ( 'bf_editors_object', sources, Split(incs), [], libtype=['core','intern'], priority=[33, 38] )