2020-11-21 11:34:45 +01:00
|
|
|
find_package(GDAL REQUIRED)
|
|
|
|
|
2022-01-29 12:52:23 +01:00
|
|
|
add_library(input-ogr ${_plugin_linkage})
|
|
|
|
target_sources(input-ogr ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
ogr_converter.cpp
|
|
|
|
ogr_datasource.cpp
|
|
|
|
ogr_featureset.cpp
|
|
|
|
ogr_index_featureset.cpp
|
|
|
|
)
|
2022-01-29 12:52:23 +01:00
|
|
|
target_include_directories(input-ogr ${_plugin_visibility} ${GDAL_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(input-ogr ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
2022-01-29 12:52:23 +01:00
|
|
|
mapnik::datasource-base
|
2021-07-22 20:17:03 +02:00
|
|
|
${GDAL_LIBRARIES}
|
2020-11-21 11:34:45 +01:00
|
|
|
)
|
2021-09-22 19:52:39 +02:00
|
|
|
set_target_properties(input-ogr PROPERTIES
|
|
|
|
OUTPUT_NAME "ogr"
|
|
|
|
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-ogr)
|