20 lines
578 B
CMake
20 lines
578 B
CMake
project(input-geojson)
|
|
|
|
add_library(input-geojson MODULE
|
|
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::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")
|
|
|
|
mapnik_install(TARGET input-geojson IS_PLUGIN)
|