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

SConscript « elbeem « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdcb050798731480fef9681b3f77f408d57303d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
import sys
import os
Import('env')

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

defs = ' NOGUI ELBEEM_BLENDER=1'

if env['WITH_BF_OPENMP'] == 1:
    defs += ' PARALLEL'

if env['OURPLATFORM']=='win32-vc':
    defs += ' USE_MSVC6FIXES'
incs = env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC'] + ' ' +env['BF_SDL_INC']

env.BlenderLib ('bf_elbeem', sources, Split(incs), Split(defs), libtype='blender', priority=0 )