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

SConscript « smoke « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0511257d31941da9181d5c12690330677fb49ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/*.cpp')

incs = ''
defs = ''

if env['WITH_BF_OPENMP']:
    if env['OURPLATFORM'] == 'linuxcross':
        incs += ' ' + env['BF_OPENMP_INC']

    defs += ' PARALLEL=1'

incs += ' ' + env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC'] 
incs += ' intern ../../extern/bullet2/src ../memutil ../guardealloc '

if env['WITH_BF_FFTW3']:
    defs += ' WITH_FFTW3'
    incs += env['BF_FFTW3_INC'] 

env.BlenderLib ('bf_intern_smoke', sources, Split(incs), Split(defs), libtype=['intern'], priority=[40] )