19 lines
448 B
CMake
19 lines
448 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
|
|
)
|
|
target_link_libraries(input-geojson PRIVATE
|
|
mapnik::mapnik
|
|
mapnik::json
|
|
)
|
|
set_target_properties(input-geojson PROPERTIES
|
|
OUTPUT_NAME "geojson"
|
|
PREFIX "${_plugin_prefix}"
|
|
SUFFIX "${_plugin_suffix}"
|
|
)
|
|
|
|
mapnik_install_plugin(input-geojson)
|