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: c427764e19e720c23b3c5b2ddd28634fd0f12060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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 '
# incs += env['BF_FFTW3_INC'] 

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