2020-11-21 11:34:45 +01:00
|
|
|
project(input-ogr)
|
|
|
|
|
|
|
|
find_package(GDAL REQUIRED)
|
|
|
|
|
|
|
|
add_library(input-ogr SHARED
|
|
|
|
ogr_converter.cpp
|
|
|
|
ogr_datasource.cpp
|
|
|
|
ogr_featureset.cpp
|
|
|
|
ogr_index_featureset.cpp
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::ogr ALIAS input-ogr)
|
|
|
|
|
|
|
|
target_include_directories(input-ogr PRIVATE ${GDAL_INCLUDE_DIR})
|
|
|
|
target_link_libraries(input-ogr PRIVATE
|
2021-03-18 15:35:55 +01:00
|
|
|
mapnik::core
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
|
|
|
${GDAL_LIBRARY}
|
|
|
|
)
|
|
|
|
set_target_properties(input-ogr PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-ogr PROPERTIES OUTPUT_NAME "ogr")
|
|
|
|
set_target_properties(input-ogr PROPERTIES SUFFIX ".input")
|
|
|
|
|
2021-04-10 14:36:22 +02:00
|
|
|
mapnik_install(TARGET input-ogr IS_PLUGIN)
|