mapnik/plugins/input/topojson/CMakeLists.txt

22 lines
568 B
Text
Raw Normal View History

2020-11-21 11:34:45 +01:00
project(input-topojson)
add_library(input-topojson SHARED
topojson_datasource.cpp
topojson_featureset.cpp
)
add_library(mapnik::plugin::input::topojson ALIAS input-topojson)
target_link_libraries(input-topojson PRIVATE
mapnik::headers
mapnik::mapnik
mapnik::json
)
set_target_properties(input-topojson PROPERTIES PREFIX "")
set_target_properties(input-topojson PROPERTIES OUTPUT_NAME "topojson")
set_target_properties(input-topojson PROPERTIES SUFFIX ".input")
install(TARGETS input-topojson
2020-11-22 22:01:33 +01:00
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
2020-11-21 11:34:45 +01:00
)