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>2006-03-12 17:51:33 +0300
committerTon Roosendaal <ton@blender.org>2006-03-12 17:51:33 +0300
commit0e44aa60b252547da82c04408bf15b1f3212aa9c (patch)
treea201ef22dbe023d5810ec2f1a0db1a24835df3a9 /source/blender/imbuf/intern/cineon/SConscript
parentde0262e4c81c7d7f036cc574f636a248f2cc9f27 (diff)
Half fix for colorpicker: after using sliders, the redraw callback was
too late... moved it one line up. :) Still unknown; why doesn't HSV color field not redraw?
Diffstat (limited to 'source/blender/imbuf/intern/cineon/SConscript')
-rw-r--r--source/blender/imbuf/intern/cineon/SConscript18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/cineon/SConscript b/source/blender/imbuf/intern/cineon/SConscript
new file mode 100644
index 00000000000..e23027b43de
--- /dev/null
+++ b/source/blender/imbuf/intern/cineon/SConscript
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+Import ('env')
+
+#source_files = ['cineon_dpx.c', 'cineonlib.c']
+source_files = env.Glob('*.c')
+
+incs = ['.',
+ '../../../blenkernel',
+ '../../',
+ '..',
+ '../../../blenlib',
+ 'intern/include',
+ '#/intern/guardedalloc',
+ '../../../makesdna']
+
+defs = []
+
+env.BlenderLib ('bf_cineon', source_files, incs, defs, libtype=['core','player'], priority = [90, 200])