blender/intern/elbeem/SConscript

19 lines
407 B
Python
Raw Normal View History

#!/usr/bin/python
import sys
import os
2006-02-27 11:48:25 +00:00
Import('env')
sources = env.Glob('intern/*.cpp')
2008-09-22 10:21:57 +00:00
defs = 'NOGUI ELBEEM_BLENDER=1'
if env['WITH_BF_OPENMP']:
defs += ' PARALLEL'
if env['OURPLATFORM']=='win32-vc':
defs += ' USE_MSVC6FIXES'
incs = env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC']
incs += ' extern '
env.BlenderLib ('bf_elbeem', sources, Split(incs), Split(defs), libtype='intern', priority=0 )