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

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/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/guardedalloc #intern/string #intern/moto/include #source/gameengine/SceneGraph #source/blender/blenloader'
 
32
incs = [
 
33
    '.',
 
34
    '#intern/guardedalloc',
 
35
    '#intern/string',
 
36
    '#intern/moto/include',
 
37
    '#source/gameengine/SceneGraph',
 
38
    '#source/blender/blenlib',
 
39
    ]
33
40
 
34
41
defs = []
35
42
 
36
43
if env['WITH_BF_PYTHON']:
37
 
    incs += ' ' + env['BF_PYTHON_INC']
 
44
    incs.extend(Split(env['BF_PYTHON_INC']))
38
45
    defs.append('WITH_PYTHON')
39
46
 
40
47
if env['WITH_BF_CXX_GUARDEDALLOC']:
41
48
    defs.append('WITH_CXX_GUARDEDALLOC')
42
49
 
43
 
env.BlenderLib ( 'ge_logic_expressions', sources, Split(incs), defs, libtype=['core','player'], priority = [360,80], cxx_compileflags=env['BGE_CXXFLAGS'])
 
50
env.BlenderLib('ge_logic_expressions', sources, incs, defs, libtype=['core','player'], priority = [360,80], cxx_compileflags=env['BGE_CXXFLAGS'])