2011-10-12 05:02:50 +02:00
|
|
|
#
|
2013-11-06 01:54:13 +01:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
2011-10-12 05:02:50 +02:00
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
# Copyright (C) 2015 Artem Pavlenko
|
2011-10-12 05:02:50 +02:00
|
|
|
#
|
2013-11-06 01:54:13 +01: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
|
2011-10-12 05:02:50 +02:00
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
#
|
2011-10-12 05:02:50 +02:00
|
|
|
|
2012-08-28 03:45:04 +02:00
|
|
|
import os
|
|
|
|
from glob import glob
|
2011-10-12 05:02:50 +02:00
|
|
|
|
|
|
|
Import('env')
|
2013-10-24 01:00:39 +02:00
|
|
|
lib_env = env.Clone()
|
2015-05-26 22:11:44 +02:00
|
|
|
lib_env.Append(CXXFLAGS='-fPIC')
|
2013-11-04 08:10:21 +01:00
|
|
|
lib_env.StaticLibrary('agg', glob('./src/' + '*.cpp'), LIBS=[])
|