mapnik/src/SConscript

70 lines
2 KiB
Text
Raw Normal View History

# This file is part of Mapnik (c++ mapping toolkit)
# Copyright (C) 2005 Artem Pavlenko
#
# Mapnik 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# $Id$
2005-06-14 17:06:59 +02:00
import glob
Import ('env')
prefix = env['PREFIX']
boost_root = env['BOOST_ROOT']
agg_root = env['AGG_ROOT']
agg_headers = agg_root + '/include'
freetype2_root = env['FREETYPE2_ROOT']
headers =[ '#include',boost_root,freetype2_root,agg_headers]
libraries=['rt','z','png','ltdl','jpeg','tiff','agg','boost-filesystem','boost-regex','boost-serialization','boost-thread']
2005-06-14 17:06:59 +02:00
libpaths = [prefix+'/lib','#agg']
linkflags = '-Wl,-rpath-link,. -Wl,-soname,libmapnik.so'
source = Split(
2005-09-08 15:05:39 +02:00
"""
mapnik.cpp
2005-06-14 17:06:59 +02:00
datasource_cache.cpp
envelope.cpp
graphics.cpp
image_reader.cpp
image_util.cpp
layer.cpp
map.cpp
memory.cpp
params.cpp
plugin.cpp
png_reader.cpp
render.cpp
named_style_cache.cpp
2005-06-14 17:06:59 +02:00
text.cpp
tiff_reader.cpp
wkb.cpp
line_symbolizer.cpp
line_pattern_symbolizer.cpp
polygon_symbolizer.cpp
polygon_pattern_symbolizer.cpp
image_symbolizer.cpp
"""
2005-06-14 17:06:59 +02:00
)
lib_mapnik = env.SharedLibrary('libmapnik',source,CPPPATH=headers,LIBS=libraries,LIBPATH=libpaths,LINKFLAGS=linkflags)
env.Alias(target="install",source=env.Install(prefix+"/lib",lib_mapnik))
includes = glob.glob('../include' + '/*.hpp')
env.Alias(target="install",source=env.Install(prefix+"/include",includes))