19 lines
527 B
CMake
19 lines
527 B
CMake
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
|
|
mapnik::headers
|
|
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
|
|
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
|
|
)
|