2012-12-17 08:01:43 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# The Original Code is Copyright (C) 2006, Blender Foundation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
#
|
|
|
|
# Contributor(s): Nathan Letwory.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
import sys
|
2006-02-07 21:12:01 +00:00
|
|
|
import os
|
2006-02-27 11:48:25 +00:00
|
|
|
Import('env')
|
2006-02-04 14:15:10 +00:00
|
|
|
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
|
2010-02-01 18:39:41 +00:00
|
|
|
incs = ''
|
2008-09-22 10:21:57 +00:00
|
|
|
defs = 'NOGUI ELBEEM_BLENDER=1'
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2008-10-22 11:28:10 +00:00
|
|
|
if env['WITH_BF_OPENMP']:
|
2010-02-01 18:39:41 +00:00
|
|
|
if env['OURPLATFORM'] == 'linuxcross':
|
|
|
|
incs += ' ' + env['BF_OPENMP_INC']
|
|
|
|
|
2009-12-17 17:05:28 +00:00
|
|
|
defs += ' PARALLEL'
|
2008-01-29 21:01:12 +00:00
|
|
|
|
2009-07-16 19:41:28 +00:00
|
|
|
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
|
2006-02-04 14:15:10 +00:00
|
|
|
defs += ' USE_MSVC6FIXES'
|
2010-02-01 18:39:41 +00:00
|
|
|
incs += ' ' + env['BF_PNG_INC'] + ' ' + env['BF_ZLIB_INC']
|
2013-09-27 18:55:26 +00:00
|
|
|
incs += ' extern ../../guardedalloc'
|
2006-02-04 14:15:10 +00:00
|
|
|
|
2010-08-25 04:30:47 +00:00
|
|
|
env.BlenderLib ('bf_intern_elbeem', sources, Split(incs), Split(defs), libtype='intern', priority=0 )
|