mapnik/plugins/input/shape/CMakeLists.txt

19 lines
582 B
Text
Raw Normal View History

2021-07-05 17:13:45 +02:00
add_library(input-shape MODULE
2020-11-21 11:34:45 +01:00
dbfile.cpp
dbf_test.cpp
shape_datasource.cpp
shape_featureset.cpp
shape_index_featureset.cpp
shape_io.cpp shape_utils.cpp
)
target_link_libraries(input-shape PRIVATE mapnik::mapnik)
2021-09-22 19:52:39 +02:00
set_target_properties(input-shape PROPERTIES
OUTPUT_NAME "shape"
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-shape)