2020-11-21 11:34:45 +01:00
|
|
|
project(input-geojson)
|
|
|
|
|
|
|
|
add_library(input-geojson SHARED
|
|
|
|
geojson_datasource.cpp
|
|
|
|
geojson_featureset.cpp
|
|
|
|
geojson_index_featureset.cpp
|
|
|
|
geojson_memory_index_featureset.cpp
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::geojson ALIAS input-geojson)
|
|
|
|
|
|
|
|
target_link_libraries(input-geojson PRIVATE
|
|
|
|
mapnik::headers
|
|
|
|
mapnik::mapnik
|
|
|
|
mapnik::json
|
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(input-geojson PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-geojson PROPERTIES OUTPUT_NAME "geojson")
|
|
|
|
set_target_properties(input-geojson PROPERTIES SUFFIX ".input")
|
|
|
|
|
|
|
|
install(TARGETS input-geojson
|
2020-11-22 22:01:33 +01:00
|
|
|
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
|
2020-11-21 11:34:45 +01:00
|
|
|
)
|