2012-08-27 17:58:49 -07:00
|
|
|
import os
|
|
|
|
from glob import glob
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
2012-08-27 18:45:04 -07:00
|
|
|
base = './mapnik/'
|
2012-08-27 18:54:08 -07:00
|
|
|
subdirs = ['','svg','wkt','grid','json','util','text_placements','formatting']
|
2012-08-27 17:58:49 -07:00
|
|
|
|
2012-11-28 17:21:38 -08:00
|
|
|
if env['SVG_RENDERER']:
|
|
|
|
subdirs.append('svg/output')
|
2012-08-27 17:58:49 -07:00
|
|
|
|
|
|
|
if 'install' in COMMAND_LINE_TARGETS:
|
|
|
|
for subdir in subdirs:
|
|
|
|
pathdir = os.path.join(base,subdir,'*.hpp')
|
2012-08-27 18:54:08 -07:00
|
|
|
includes = glob(pathdir)
|
|
|
|
inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/'+subdir)
|
2012-08-27 17:58:49 -07:00
|
|
|
env.Alias(target='install', source=env.Install(inc_target, includes))
|
|
|
|
|
2012-08-27 18:54:08 -07:00
|
|
|
env['create_uninstall_target'](env, os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/'))
|