Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « GameLogic « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da3c0fadb51f34f7e2b46bb2c72cc552a4977d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
Import ('env')

sources = env.Glob('*.cpp') + env.Glob('Joystick/*.cpp')

incs = '. #/intern/string #intern/container #intern/ghost'
incs += ' #/source/gameengine/Expressions #/intern/moto/include'
incs += ' #/source/gameengine/Rasterizer #/source/gameengine/SceneGraph'
incs += ' #/source/blender/blenlib'

defs = []

if env['WITH_BF_SDL']:
    defs.append('WITH_SDL')
    incs += ' ' + env['BF_SDL_INC']

if env['WITH_BF_PYTHON']:
    incs += ' ' + env['BF_PYTHON_INC']
    defs.append('WITH_PYTHON')

if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
    if env['BF_DEBUG']:
        defs.append('_DEBUG')

if env['WITH_BF_CXX_GUARDEDALLOC']:
    defs.append('WITH_CXX_GUARDEDALLOC')
    incs += ' #/intern/guardedalloc'

env.BlenderLib ( 'ge_logic', sources, Split(incs), defs, libtype=['core','player'], priority=[330,65], cxx_compileflags=env['BGE_CXXFLAGS'])