18 lines
707 B
Python
18 lines
707 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
defs = ['GLEW_STATIC']
|
|
|
|
sources = env.Glob('intern/*.cpp') + env.Glob('nodes/*.cpp') + env.Glob('operations/*.cpp')
|
|
|
|
incs = '. nodes intern operations ../blenlib ../blenkernel ../makesdna ../render/extern/include ../render/intern/include'
|
|
incs += ' ../makesrna ../blenloader ../../../intern/guardedalloc ../imbuf ../windowmanager '
|
|
incs += '../opencl ../nodes ../nodes/intern ../nodes/composite '
|
|
|
|
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
|
|
incs += ' ' + env['BF_PTHREADS_INC']
|
|
|
|
# data files
|
|
incs += ' ' + env['DATA_HEADERS']
|
|
|
|
env.BlenderLib ( 'bf_composite', sources, Split(incs), defines=defs, libtype=['core'], priority = [164] )
|