2020-11-21 11:34:45 +01:00
|
|
|
project(input-shape)
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::shape ALIAS input-shape)
|
|
|
|
|
2021-09-14 20:46:43 +02:00
|
|
|
target_link_libraries(input-shape PRIVATE mapnik::mapnik)
|
2020-11-21 11:34:45 +01:00
|
|
|
|
|
|
|
set_target_properties(input-shape PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-shape PROPERTIES OUTPUT_NAME "shape")
|
|
|
|
set_target_properties(input-shape PROPERTIES SUFFIX ".input")
|
|
|
|
|
2021-04-10 14:36:22 +02:00
|
|
|
mapnik_install(TARGET input-shape IS_PLUGIN)
|