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

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/KXNetwork/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:
29
29
 
30
30
sources = env.Glob('*.cpp')
31
31
 
32
 
incs = '. #intern/string #intern/moto/include'
33
 
incs += ' #source/gameengine/Ketsji #intern/container'
34
 
incs += ' #source/gameengine/GameLogic #source/gameengine/Expressions'
35
 
incs += ' #source/gameengine/Network #source/gameengine/SceneGraph'
 
32
incs = [
 
33
    '.',
 
34
    '#intern/container',
 
35
    '#intern/string',
 
36
    '#intern/moto/include',
 
37
    '#source/gameengine/Expressions',
 
38
    '#source/gameengine/GameLogic',
 
39
    '#source/gameengine/Ketsji',
 
40
    '#source/gameengine/Network',
 
41
    '#source/gameengine/SceneGraph',
 
42
    ]
 
43
incs = ' '.join(incs)
36
44
 
37
45
defs = []
38
46