~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/SConscript

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
import sys
4
4
 
5
5
SConscript(['avi/SConscript',
 
6
            'bmesh/SConscript',
6
7
            'blenkernel/SConscript',
7
8
            'blenlib/SConscript',
8
9
            'blenloader/SConscript',
10
11
            'gpu/SConscript',
11
12
            'editors/SConscript',
12
13
            'imbuf/SConscript',
13
 
            'imbuf/intern/cineon/SConscript',
14
14
            'makesdna/SConscript',
15
 
            'makesrna/SConscript',
16
 
            'readblenfile/SConscript',
17
15
            'render/SConscript',
18
16
            'nodes/SConscript',
19
17
            'modifiers/SConscript',
21
19
            'windowmanager/SConscript',
22
20
            'blenfont/SConscript'])
23
21
 
24
 
 
 
22
makesrna = SConscript('makesrna/SConscript')
25
23
 
26
24
if env['WITH_BF_PYTHON']:
27
25
    SConscript(['python/SConscript'])
29
27
if env['WITH_BF_DDS']:
30
28
    SConscript (['imbuf/intern/dds/SConscript'])
31
29
 
 
30
if env['WITH_BF_CINEON']:
 
31
    SConscript (['imbuf/intern/cineon/SConscript'])
 
32
 
32
33
if env['WITH_BF_OPENEXR']:
33
34
    SConscript (['imbuf/intern/openexr/SConscript'])
34
35