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) 2012, Blender Foundation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
#
|
|
|
|
# Contributor(s): Sergey Sharybin.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
2012-09-15 10:03:17 +00:00
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
2012-10-04 13:39:08 +00:00
|
|
|
sources = env.Glob('*.cc')
|
2012-09-15 10:03:17 +00:00
|
|
|
|
|
|
|
incs = '. ../guardedalloc ../../source/blender/blenlib'
|
2013-04-02 02:05:03 +00:00
|
|
|
defs = [ 'GLEW_STATIC' ]
|
2012-09-15 10:03:17 +00:00
|
|
|
|
|
|
|
if env['WITH_BF_OCIO']:
|
2012-10-04 13:39:08 +00:00
|
|
|
defs.append('WITH_OCIO')
|
2012-10-04 23:44:03 +00:00
|
|
|
incs += ' ' + env['BF_OCIO_INC']
|
2013-03-29 16:17:22 +00:00
|
|
|
incs += ' ' + '#/extern/glew/include'
|
2012-09-15 10:03:17 +00:00
|
|
|
|
|
|
|
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
|
|
|
|
incs += ' ' + env['BF_BOOST_INC']
|
|
|
|
else:
|
2012-10-04 23:44:03 +00:00
|
|
|
sources.remove('ocio_impl.cc')
|
2013-03-29 16:02:27 +00:00
|
|
|
sources.remove('ocio_impl_glsl.cc')
|
2012-09-15 10:03:17 +00:00
|
|
|
|
2012-10-04 13:39:08 +00:00
|
|
|
env.BlenderLib( 'bf_intern_opencolorio', sources, Split(incs), defs, libtype=['extern','player'], priority=[10, 185])
|