2020-11-21 11:34:45 +01:00
|
|
|
find_package(PostgreSQL REQUIRED)
|
|
|
|
|
2022-01-29 12:52:23 +01:00
|
|
|
add_library(input-pgraster ${_plugin_linkage})
|
|
|
|
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
|
|
|
|
)
|
2021-09-22 19:52:39 +02:00
|
|
|
set_target_properties(input-pgraster PROPERTIES
|
|
|
|
OUTPUT_NAME "pgraster"
|
|
|
|
PREFIX "${_plugin_prefix}"
|
|
|
|
SUFFIX "${_plugin_suffix}"
|
2021-10-25 18:58:55 +02:00
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/plugins/input"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}"
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/lib"
|
2021-09-22 19:52:39 +02:00
|
|
|
)
|
|
|
|
mapnik_install_plugin(input-pgraster)
|