2005-06-17 15:27:45 +02:00
|
|
|
#
|
2006-03-31 12:32:02 +02:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
#
|
|
|
|
# Mapnik is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
2012-08-28 01:43:40 +02:00
|
|
|
#
|
2005-06-17 15:27:45 +02:00
|
|
|
|
2011-08-12 23:31:28 +02:00
|
|
|
import os
|
2005-06-17 15:27:45 +02:00
|
|
|
import glob
|
|
|
|
|
|
|
|
Import ('env')
|
|
|
|
|
2010-09-18 20:02:15 +02:00
|
|
|
program_env = env.Clone()
|
|
|
|
|
2005-06-17 15:27:45 +02:00
|
|
|
source = Split(
|
|
|
|
"""
|
|
|
|
shapeindex.cpp
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2011-08-12 19:09:22 +02:00
|
|
|
source += program_env.Object('box2d-static', '#src/box2d.cpp')
|
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
headers = ['#plugins/input/shape'] + env['CPPPATH']
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2008-06-29 12:58:29 +02:00
|
|
|
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
2009-04-28 21:54:34 +02:00
|
|
|
boost_filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
|
2009-12-03 18:06:25 +01:00
|
|
|
boost_system = 'boost_system%s' % env['BOOST_APPEND']
|
2011-10-26 04:29:51 +02:00
|
|
|
libraries = [boost_program_options, boost_filesystem, boost_system]
|
2009-04-29 02:06:10 +02:00
|
|
|
|
2012-02-14 21:03:44 +01:00
|
|
|
if env.get('BOOST_LIB_VERSION_FROM_HEADER'):
|
|
|
|
boost_version_from_header = int(env['BOOST_LIB_VERSION_FROM_HEADER'].split('_')[1])
|
|
|
|
if boost_version_from_header < 46:
|
|
|
|
# avoid ubuntu issue with boost interprocess:
|
|
|
|
# https://github.com/mapnik/mapnik/issues/1082
|
|
|
|
program_env.Append(CXXFLAGS = '-fpermissive')
|
|
|
|
|
2010-09-18 20:02:15 +02:00
|
|
|
shapeindex = program_env.Program('shapeindex', source, CPPPATH=headers, LIBS=libraries, LINKFLAGS=env['CUSTOM_LDFLAGS'])
|
2005-06-17 15:27:45 +02:00
|
|
|
|
2011-08-29 23:12:22 +02:00
|
|
|
Depends(shapeindex, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
|
|
|
|
2010-07-18 22:40:15 +02:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
2011-08-12 23:31:28 +02:00
|
|
|
env.Install(os.path.join(env['INSTALL_PREFIX'],'bin'), shapeindex)
|
|
|
|
env.Alias('install', os.path.join(env['INSTALL_PREFIX'],'bin'))
|
2010-07-18 22:40:15 +02:00
|
|
|
|
2011-08-12 23:31:28 +02:00
|
|
|
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','shapeindex'))
|