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>2009-02-03 15:04:05 +0300
committerTon Roosendaal <ton@blender.org>2009-02-03 15:04:05 +0300
commit267a555fef64d2b2a60433e4ad9b68191fefcc8a (patch)
treed656994815a3dde944e3d4461bcbe2bdf8576795 /source/blender/editors/space_graph/SConscript
parentafe28a1a61421b5cc8edc58376b452f697361488 (diff)
2.5
As creator of the Ipo I also reserve to right to kick it out definitely :) To honour the wonderful contributions from Joshua here it is; renamed space_ipo to space_graph! Note; make, cmake and scons should work, msvc will require some work now!
Diffstat (limited to 'source/blender/editors/space_graph/SConscript')
-rw-r--r--source/blender/editors/space_graph/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/editors/space_graph/SConscript b/source/blender/editors/space_graph/SConscript
new file mode 100644
index 00000000000..cc9812678e9
--- /dev/null
+++ b/source/blender/editors/space_graph/SConscript
@@ -0,0 +1,9 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../makesrna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
+
+env.BlenderLib ( 'bf_editors_space_graph', sources, Split(incs), [], libtype=['core'], priority=[50] )