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

« back to all changes in this revision

Viewing changes to source/blender/editors/uvedit/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:
31
31
 
32
32
sources = env.Glob('*.c')
33
33
 
34
 
incs = '../include ../../blenlib ../../blenfont ../../blenkernel ../../makesdna ../../imbuf'
35
 
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
36
 
incs += ' ../../bmesh ../../makesrna #/intern/opennl/extern ../../gpu ../../blenloader'
 
34
incs = [
 
35
    '#/intern/guardedalloc',
 
36
    '#/extern/glew/include',
 
37
    '#/intern/opennl/extern',
 
38
    '../include',
 
39
    '../../blenfont',
 
40
    '../../blenkernel',
 
41
    '../../blenlib',
 
42
    '../../bmesh',
 
43
    '../../gpu',
 
44
    '../../makesdna',
 
45
    '../../makesrna',
 
46
    '../../windowmanager',
 
47
    ]
37
48
 
38
49
if env['WITH_BF_INTERNATIONAL']:
39
50
    defs.append('WITH_INTERNATIONAL')
40
51
 
41
 
env.BlenderLib ( 'bf_editors_uvedit', sources, Split(incs), defs, libtype=['core'], priority=[45] )
 
52
env.BlenderLib ( 'bf_editors_uvedit', sources, incs, defs, libtype=['core'], priority=[45] )