Changeset View
Changeset View
Standalone View
Standalone View
source/blender/openvdb/SConscript
- This file was added.
| Import ('env') | |||||
| sources = env.Glob('*.cpp') | |||||
| sources += env.Glob('intern/*.cpp') | |||||
| defs = [] | |||||
| incs = [ | |||||
| '.', | |||||
| 'intern', | |||||
| '#/intern/guardedalloc', | |||||
| '../blenkernel', | |||||
| '../blenlib', | |||||
| '../makesdna', | |||||
| env['BF_OPENVDB_INC'] | |||||
| ] | |||||
| incs.append(env['BF_OPENEXR_INC'].split()) | |||||
| if env['WITH_BF_OPENVDB']: | |||||
| defs.append('WITH_OPENVDB') | |||||
| env.BlenderLib ( libname = 'bf_openvdb', sources = sources, includes = Split(incs), defines = defs, libtype=['core'], priority = [164] ) | |||||