forked from bartvdbraak/blender
483136c8e4
writefile.c had usless include.
19 lines
408 B
Python
19 lines
408 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
Import('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
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='blender', priority=0 )
|