2020-11-21 11:34:45 +01:00
|
|
|
project(input-postgis)
|
|
|
|
|
|
|
|
find_package(PostgreSQL REQUIRED)
|
|
|
|
|
|
|
|
add_library(input-postgis SHARED
|
|
|
|
postgis_datasource.cpp
|
|
|
|
postgis_featureset.cpp
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::postgis ALIAS input-postgis)
|
|
|
|
|
|
|
|
target_link_libraries(input-postgis PRIVATE
|
|
|
|
mapnik::headers
|
|
|
|
mapnik::mapnik
|
|
|
|
PostgreSQL::PostgreSQL
|
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(input-postgis PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-postgis PROPERTIES OUTPUT_NAME "postgis")
|
|
|
|
set_target_properties(input-postgis PROPERTIES SUFFIX ".input")
|
|
|
|
|
|
|
|
install(TARGETS input-postgis
|
2020-11-22 22:01:33 +01:00
|
|
|
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
|
2020-11-21 11:34:45 +01:00
|
|
|
)
|