2020-11-21 11:34:45 +01:00
|
|
|
find_package(PostgreSQL REQUIRED)
|
|
|
|
|
2022-02-02 17:20:29 +01:00
|
|
|
add_plugin_target(input-pgraster "pgraster")
|
2022-01-29 12:52:23 +01:00
|
|
|
target_sources(input-pgraster ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
pgraster_datasource.cpp
|
|
|
|
pgraster_featureset.cpp
|
|
|
|
pgraster_wkb_reader.cpp
|
|
|
|
)
|
2022-01-29 12:52:23 +01:00
|
|
|
target_link_libraries(input-pgraster ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
2022-01-29 12:52:23 +01:00
|
|
|
mapnik::datasource-base
|
2020-11-21 11:34:45 +01:00
|
|
|
PostgreSQL::PostgreSQL
|
|
|
|
)
|