mapnik/utils/shapeindex/build.py

56 lines
1.8 KiB
Python
Raw Normal View History

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) 2013 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
#
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
from copy import copy
2005-06-17 15:27:45 +02:00
Import ('env')
program_env = env.Clone()
2005-06-17 15:27:45 +02:00
source = Split(
"""
shapeindex.cpp
"""
)
source += program_env.Object('box2d-static', '#src/box2d.cpp')
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']
boost_system = 'boost_system%s' % env['BOOST_APPEND']
libraries = [env['MAPNIK_NAME'], boost_program_options, boost_system]
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')
shapeindex = program_env.Program('shapeindex', source, CPPPATH=headers, LIBS=libraries)
2005-06-17 15:27:45 +02:00
Depends(shapeindex, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
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'))
2011-08-12 23:31:28 +02:00
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','shapeindex'))