~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/quicktime/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:
11
11
 
12
12
 
13
13
incs  = ['.',
14
 
                 '../quicktime',
15
 
                 '../makesdna',
16
 
                 '../makesrna',
17
 
                 '../windowmanager',
18
 
                 '#/intern/guardedalloc',
19
 
                 '../blenlib',
20
 
                 '../blenkernel',
21
 
                 '../avi',
22
 
                 '../imbuf',
23
 
                 '../imbuf/intern',
24
 
                 '../blenloader',
25
 
                 '../render/extern/include',
26
 
                 '../editors/include',
27
 
                 '#/intern/audaspace/intern']
 
14
         '../quicktime',
 
15
         '../makesdna',
 
16
         '../makesrna',
 
17
         '../windowmanager',
 
18
         '#/intern/guardedalloc',
 
19
         '../blenlib',
 
20
         '../blenkernel',
 
21
         '../avi',
 
22
         '../imbuf',
 
23
         '../imbuf/intern',
 
24
         '../blenloader',
 
25
         '../render/extern/include',
 
26
         '../editors/include',
 
27
         '#/intern/audaspace/intern']
28
28
 
29
29
incs.append(env['BF_QUICKTIME_INC'])
30
30
 
34
34
defs=['WITH_QUICKTIME']
35
35
 
36
36
if env['WITH_GHOST_COCOA']:
37
 
        defs.append('GHOST_COCOA')
38
 
 
39
 
env.BlenderLib ('bf_quicktime', sources=source_files, includes=incs, defines=defs, libtype=types, priority=priorities)
 
37
    defs.append('GHOST_COCOA')
 
38
    env.BlenderLib ('bf_quicktime', sources=source_files, includes=incs, defines=defs, libtype=types, priority=priorities, cc_compilerchange='/usr/bin/gcc', cxx_compilerchange='/usr/bin/g++') # always use default-Apple-gcc for objC language, gnu-compilers do not support it fully yet
 
39
else:
 
40
    env.BlenderLib ('bf_quicktime', sources=source_files, includes=incs, defines=defs, libtype=types, priority=priorities)