mapnik/plugins/input/geojson/CMakeLists.txt
2021-03-18 15:35:55 +01:00

23 lines
630 B
CMake

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::core
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
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
)