2020-11-21 11:34:45 +01:00
|
|
|
project(input-geojson)
|
|
|
|
|
2021-07-05 17:13:45 +02:00
|
|
|
add_library(input-geojson MODULE
|
2020-11-21 11:34:45 +01:00
|
|
|
geojson_datasource.cpp
|
|
|
|
geojson_featureset.cpp
|
|
|
|
geojson_index_featureset.cpp
|
|
|
|
geojson_memory_index_featureset.cpp
|
|
|
|
)
|
2021-09-14 20:46:43 +02:00
|
|
|
target_link_libraries(input-geojson PRIVATE
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
|
|
|
mapnik::json
|
|
|
|
)
|
2021-09-22 19:52:39 +02:00
|
|
|
set_target_properties(input-geojson PROPERTIES
|
|
|
|
OUTPUT_NAME "geojson"
|
|
|
|
PREFIX "${_plugin_prefix}"
|
|
|
|
SUFFIX "${_plugin_suffix}"
|
|
|
|
)
|
2020-11-21 11:34:45 +01:00
|
|
|
|
2021-09-22 19:52:39 +02:00
|
|
|
mapnik_install_plugin(input-geojson)
|