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)
|
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
# Copyright (C) 2015 Artem Pavlenko
|
2006-03-31 12:32:02 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2015-06-16 12:49:16 +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
|
2013-07-14 19:01:26 +02:00
|
|
|
from copy import copy
|
2005-06-17 15:27:45 +02:00
|
|
|
|
|
|
|
Import ('env')
|
|
|
|
|
2016-03-03 23:19:12 +01:00
|
|
|
Import ('plugin_base')
|
|
|
|
|
|
|
|
program_env = plugin_base.Clone()
|
2010-09-18 20:02:15 +02:00
|
|
|
|
2005-06-17 15:27:45 +02:00
|
|
|
source = Split(
|
|
|
|
"""
|
|
|
|
shapeindex.cpp
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2015-06-16 12:49:16 +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']
|
2023-03-09 14:17:28 +01:00
|
|
|
libraries = [env['MAPNIK_NAME'], boost_program_options]
|
2014-09-18 23:29:22 +02:00
|
|
|
libraries.append(env['ICU_LIB_NAME'])
|
2013-07-14 19:01:26 +02:00
|
|
|
if env['RUNTIME_LINK'] == 'static':
|
|
|
|
libraries.extend(copy(env['LIBMAPNIK_LIBS']))
|
2013-07-14 21:26:24 +02:00
|
|
|
if env['PLATFORM'] == 'Linux':
|
|
|
|
libraries.append('dl')
|
2009-04-29 02:06:10 +02:00
|
|
|
|
2013-10-22 22:35:46 +02:00
|
|
|
shapeindex = program_env.Program('shapeindex', source, CPPPATH=headers, LIBS=libraries)
|
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
|
|
|
|
2015-06-16 12:49:16 +02:00
|
|
|
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','shapeindex'))
|