2020-11-21 11:34:45 +01:00
|
|
|
project(input-geobuf)
|
|
|
|
|
|
|
|
add_library(input-geobuf SHARED
|
|
|
|
geobuf_datasource.cpp
|
|
|
|
geobuf_featureset.cpp
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::geobuf ALIAS input-geobuf)
|
|
|
|
|
|
|
|
target_link_libraries(input-geobuf PRIVATE
|
2021-03-18 15:35:55 +01:00
|
|
|
mapnik::core
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
|
|
|
)
|
|
|
|
set_target_properties(input-geobuf PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-geobuf PROPERTIES OUTPUT_NAME "geobuf")
|
|
|
|
set_target_properties(input-geobuf PROPERTIES SUFFIX ".input")
|
|
|
|
|
|
|
|
install(TARGETS input-geobuf
|
2020-11-22 22:01:33 +01:00
|
|
|
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
|
2021-02-03 19:14:08 +01:00
|
|
|
)
|