mapnik/plugins/input/topojson/CMakeLists.txt

19 lines
593 B
Text
Raw Normal View History

2021-07-05 17:13:45 +02:00
add_library(input-topojson MODULE
2020-11-21 11:34:45 +01:00
topojson_datasource.cpp
topojson_featureset.cpp
)
add_library(mapnik::plugin::input::topojson ALIAS input-topojson)
target_link_libraries(input-topojson PRIVATE
2020-11-21 11:34:45 +01:00
mapnik::mapnik
mapnik::json
)
2021-09-22 19:52:39 +02:00
set_target_properties(input-topojson PROPERTIES
OUTPUT_NAME "topojson"
PREFIX "${_plugin_prefix}"
SUFFIX "${_plugin_suffix}"
LIBRARY_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/plugins/input"
RUNTIME_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}"
ARCHIVE_OUTPUT_DIRECTORY "${MAPNIK_OUTPUT_DIR}/lib"
2021-09-22 19:52:39 +02:00
)
mapnik_install_plugin(input-topojson)