2020-11-21 10:34:45 +00:00
|
|
|
find_package(GDAL REQUIRED)
|
|
|
|
|
2021-07-05 15:13:45 +00:00
|
|
|
add_library(input-ogr MODULE
|
2020-11-21 10:34:45 +00:00
|
|
|
ogr_converter.cpp
|
|
|
|
ogr_datasource.cpp
|
|
|
|
ogr_featureset.cpp
|
|
|
|
ogr_index_featureset.cpp
|
|
|
|
)
|
2021-07-22 20:06:01 +00:00
|
|
|
target_include_directories(input-ogr PRIVATE ${GDAL_INCLUDE_DIRS})
|
2021-09-14 18:46:43 +00:00
|
|
|
target_link_libraries(input-ogr PRIVATE
|
2020-11-21 10:34:45 +00:00
|
|
|
mapnik::mapnik
|
2021-07-22 18:17:03 +00:00
|
|
|
${GDAL_LIBRARIES}
|
2020-11-21 10:34:45 +00:00
|
|
|
)
|
2021-09-22 17:52:39 +00:00
|
|
|
set_target_properties(input-ogr PROPERTIES
|
|
|
|
OUTPUT_NAME "ogr"
|
|
|
|
PREFIX "${_plugin_prefix}"
|
|
|
|
SUFFIX "${_plugin_suffix}"
|
2021-10-25 16:58:55 +00: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 17:52:39 +00:00
|
|
|
)
|
|
|
|
mapnik_install_plugin(input-ogr)
|