forked from bartvdbraak/blender
4782522379
Thanks!
24 lines
749 B
Python
24 lines
749 B
Python
#!/usr/bin/python
|
|
|
|
# NOTE: This file is automatically generated by bundle.sh script
|
|
# If you're doing changes in this file, please update template
|
|
# in that script too
|
|
|
|
Import ('env')
|
|
|
|
sources = env.Glob('lib/*.cpp')
|
|
|
|
defs = []
|
|
incs = ['include']
|
|
|
|
if env['WITH_BF_BOOST']:
|
|
if env['OURPLATFORM'] not in ('win32-vc', 'win64-vc'):
|
|
# Boost is setting as preferred collections library in the Carve code when using MSVC compiler
|
|
if env['OURPLATFORM'] not in ('win32-mingw', 'win64-mingw'):
|
|
defs.append('HAVE_BOOST_UNORDERED_COLLECTIONS')
|
|
|
|
defs.append('CARVE_SYSTEM_BOOST')
|
|
incs.append(env['BF_BOOST_INC'])
|
|
|
|
env.BlenderLib ('extern_carve', Split(sources), incs, defs, libtype=['extern'], priority=[40] )
|