fix rasterlite linking when deps are static libs
This commit is contained in:
parent
6580ff784f
commit
ac04512bb5
1 changed files with 9 additions and 0 deletions
|
@ -38,6 +38,15 @@ libraries = [env['PLUGINS']['rasterlite']['lib']]
|
|||
libraries.append(env['ICU_LIB_NAME'])
|
||||
libraries.append('boost_system%s' % env['BOOST_APPEND'])
|
||||
|
||||
if env['RUNTIME_LINK'] == 'static':
|
||||
libraries.append('geotiff')
|
||||
libraries.append('spatialite')
|
||||
libraries.append('sqlite3')
|
||||
libraries.append('geos_c')
|
||||
libraries.append('geos')
|
||||
libraries.append('proj')
|
||||
libraries.append('z')
|
||||
|
||||
if env['PLUGIN_LINKING'] == 'shared':
|
||||
libraries.append(env['MAPNIK_NAME'])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue