15 lines
361 B
CMake
15 lines
361 B
CMake
project(input-raster)
|
|
|
|
add_library(input-raster MODULE
|
|
raster_datasource.cpp
|
|
raster_featureset.cpp
|
|
raster_info.cpp
|
|
)
|
|
target_link_libraries(input-raster PRIVATE mapnik::mapnik)
|
|
set_target_properties(input-raster PROPERTIES
|
|
OUTPUT_NAME "raster"
|
|
PREFIX "${_plugin_prefix}"
|
|
SUFFIX "${_plugin_suffix}"
|
|
)
|
|
|
|
mapnik_install_plugin(input-raster)
|