2020-11-21 11:34:45 +01:00
|
|
|
find_package(GDAL REQUIRED)
|
|
|
|
|
2022-02-02 17:20:29 +01:00
|
|
|
add_plugin_target(input-ogr "ogr")
|
2022-01-29 12:52:23 +01:00
|
|
|
target_sources(input-ogr ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
ogr_converter.cpp
|
|
|
|
ogr_datasource.cpp
|
2023-11-20 18:13:29 +01:00
|
|
|
ogr_utils.cpp
|
2020-11-21 11:34:45 +01:00
|
|
|
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
|
2021-07-22 20:17:03 +02:00
|
|
|
${GDAL_LIBRARIES}
|
2020-11-21 11:34:45 +01:00
|
|
|
)
|