2015-10-01 16:16:32 +02:00
|
|
|
#
|
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 Artem Pavlenko
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
import glob
|
|
|
|
from copy import copy
|
|
|
|
|
|
|
|
Import ('env')
|
2016-03-03 23:19:12 +01:00
|
|
|
Import ('plugin_base')
|
2015-10-01 16:16:32 +02:00
|
|
|
|
2016-03-03 23:19:12 +01:00
|
|
|
program_env = plugin_base.Clone()
|
2015-10-01 16:16:32 +02:00
|
|
|
|
|
|
|
source = Split(
|
|
|
|
"""
|
2015-10-07 04:18:19 +02:00
|
|
|
mapnik-index.cpp
|
2015-10-09 12:27:35 +02:00
|
|
|
process_csv_file.cpp
|
2015-10-09 13:49:58 +02:00
|
|
|
process_geojson_file.cpp
|
2016-02-25 11:58:38 +01:00
|
|
|
../../plugins/input/csv/csv_utils.cpp
|
2015-10-01 16:16:32 +02:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
headers = env['CPPPATH']
|
|
|
|
|
|
|
|
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
|
|
|
boost_system = 'boost_system%s' % env['BOOST_APPEND']
|
|
|
|
libraries = [env['MAPNIK_NAME'], boost_program_options, boost_system]
|
2015-11-04 22:12:25 +01:00
|
|
|
# need on linux: https://github.com/mapnik/mapnik/issues/3145
|
2015-10-01 16:16:32 +02:00
|
|
|
libraries.append('mapnik-json')
|
|
|
|
libraries.append('mapnik-wkt')
|
2015-11-19 12:01:46 +01:00
|
|
|
libraries.append(env['ICU_LIB_NAME'])
|
2015-10-01 16:16:32 +02:00
|
|
|
|
|
|
|
if env['RUNTIME_LINK'] == 'static':
|
|
|
|
libraries.extend(copy(env['LIBMAPNIK_LIBS']))
|
|
|
|
if env['PLATFORM'] == 'Linux':
|
|
|
|
libraries.append('dl')
|
|
|
|
|
2015-10-07 04:18:19 +02:00
|
|
|
mapnik_index = program_env.Program('mapnik-index', source, CPPPATH=headers, LIBS=libraries)
|
2015-10-01 16:16:32 +02:00
|
|
|
|
2015-10-07 04:18:19 +02:00
|
|
|
Depends(mapnik_index, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
2015-10-01 16:16:32 +02:00
|
|
|
|
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
2015-10-07 04:18:19 +02:00
|
|
|
env.Install(os.path.join(env['INSTALL_PREFIX'],'bin'), mapnik_index)
|
2015-10-01 16:16:32 +02:00
|
|
|
env.Alias('install', os.path.join(env['INSTALL_PREFIX'],'bin'))
|
|
|
|
|
2015-10-07 04:18:19 +02:00
|
|
|
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','mapnik-index'))
|