mapnik/plugins/input/topojson/CMakeLists.txt

19 lines
592 B
Text
Raw Normal View History

2021-07-05 15:13:45 +00:00
add_library(input-topojson MODULE
2020-11-21 10:34:45 +00: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 10:34:45 +00:00
mapnik::mapnik
mapnik::json
)
2022-08-11 20:54:50 +00:00
set_target_properties(input-topojson PROPERTIES
2021-09-22 17:52:39 +00:00
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 17:52:39 +00:00
)
mapnik_install_plugin(input-topojson)