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: af5bf1aeb20cf7af4d4de9c5f97dae8a007a3052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python
Import ('env')

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

defs = ''

if env['WITH_BF_OPENMP']:
    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 += ' FFTW3=1'
    incs += env['BF_FFTW3_INC'] 

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