~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/editors/util/SConscript

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
Import ('env')
29
29
 
30
30
sources = env.Glob('*.c')
31
 
defs = []
 
31
defs = [ 'GLEW_STATIC' ]
32
32
 
33
 
incs = '../include ../../blenfont ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
34
 
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
35
 
incs += ' ../../makesrna ../../bmesh'
36
 
incs += ' ../../blenloader'
 
33
incs = [
 
34
    '#/intern/guardedalloc',
 
35
    '#/extern/glew/include',
 
36
    '../include',
 
37
    '../../blenfont',
 
38
    '../../blenkernel',
 
39
    '../../blenlib',
 
40
    '../../bmesh',
 
41
    '../../makesdna',
 
42
    '../../makesrna',
 
43
    '../../windowmanager',
 
44
    ]
37
45
 
38
46
if env['WITH_BF_INTERNATIONAL']:
39
47
    defs.append('WITH_INTERNATIONAL')
40
48
 
41
 
env.BlenderLib ( 'bf_editors_util', sources, Split(incs), defines=defs, libtype=['core','player'], priority=[330,210] )
 
49
env.BlenderLib ( 'bf_editors_util', sources, incs, defines=defs, libtype=['core','player'], priority=[330,210] )