f0940c2075
[CMake] improve BUILD_TESTING and use pkgconf for cairo on linux [CMake] add Threads dependency to -Config
21 lines
594 B
CMake
21 lines
594 B
CMake
project(input-postgis)
|
|
|
|
find_package(PostgreSQL REQUIRED)
|
|
|
|
add_library(input-postgis MODULE
|
|
postgis_datasource.cpp
|
|
postgis_featureset.cpp
|
|
)
|
|
target_link_libraries(input-postgis PRIVATE
|
|
mapnik::mapnik
|
|
PostgreSQL::PostgreSQL
|
|
)
|
|
set_target_properties(input-postgis PROPERTIES
|
|
OUTPUT_NAME "postgis"
|
|
PREFIX "${_plugin_prefix}"
|
|
SUFFIX "${_plugin_suffix}"
|
|
LIBRARY_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/plugins/input"
|
|
RUNTIME_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}"
|
|
ARCHIVE_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/lib"
|
|
)
|
|
mapnik_install_plugin(input-postgis)
|