mapnik/plugins/input/ogr/CMakeLists.txt

25 lines
760 B
Text
Raw Normal View History

2020-11-21 11:34:45 +01:00
find_package(GDAL REQUIRED)
add_library(input-ogr ${_plugin_linkage})
target_sources(input-ogr ${_plugin_visibility}
2020-11-21 11:34:45 +01:00
ogr_converter.cpp
ogr_datasource.cpp
ogr_featureset.cpp
ogr_index_featureset.cpp
)
target_include_directories(input-ogr ${_plugin_visibility} ${GDAL_INCLUDE_DIRS})
target_link_libraries(input-ogr ${_plugin_visibility}
2020-11-21 11:34:45 +01:00
mapnik::mapnik
mapnik::datasource-base
2021-07-22 20:17:03 +02:00
${GDAL_LIBRARIES}
2020-11-21 11:34:45 +01:00
)
2021-09-22 19:52:39 +02:00
set_target_properties(input-ogr PROPERTIES
OUTPUT_NAME "ogr"
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-ogr)