Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/SConscript
| Show First 20 Lines • Show All 193 Lines • ▼ Show 20 Lines | if env['WITH_BF_OCIO']: | ||||
| incs += ' ' + '#/intern/opencolorio' | incs += ' ' + '#/intern/opencolorio' | ||||
| if env['WITH_BF_OIIO']: | if env['WITH_BF_OIIO']: | ||||
| defs.append('WITH_OPENIMAGEIO') | defs.append('WITH_OPENIMAGEIO') | ||||
| incs += ' ../imbuf/intern/oiio' | incs += ' ../imbuf/intern/oiio' | ||||
| if env['WITH_BF_PLAYER']: | if env['WITH_BF_PLAYER']: | ||||
| defs.append('WITH_PLAYER') | defs.append('WITH_PLAYER') | ||||
| if env['WITH_BF_OPENVDB']: | |||||
| defs.append('WITH_OPENVDB') | |||||
| if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-mingw', 'linuxcross', 'win64-vc'): | if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'win64-mingw', 'linuxcross', 'win64-vc'): | ||||
| incs += ' ' + env['BF_PTHREADS_INC'] | incs += ' ' + env['BF_PTHREADS_INC'] | ||||
| sources = env.Glob('intern/*.c') | sources = env.Glob('intern/*.c') | ||||
| env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361]) | env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361]) | ||||