mapnik/plugins/input/topojson/CMakeLists.txt
Mathis Logemann 6254f7c09e more cmake
2020-11-21 11:34:45 +01:00

27 lines
770 B
CMake

cmake_minimum_required(VERSION 3.15.0)
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
EXPORT MapnikTargets
LIBRARY DESTINATION lib/plugins/input
ARCHIVE DESTINATION lib/plugins/input
RUNTIME DESTINATION bin/plugins/input
INCLUDES DESTINATION .
PUBLIC_HEADER DESTINATION .
)