f0940c2075
[CMake] improve BUILD_TESTING and use pkgconf for cairo on linux [CMake] add Threads dependency to -Config
22 lines
623 B
CMake
22 lines
623 B
CMake
project(input-gdal)
|
|
|
|
find_package(GDAL REQUIRED)
|
|
|
|
add_library(input-gdal MODULE
|
|
gdal_datasource.cpp
|
|
gdal_featureset.cpp
|
|
)
|
|
target_include_directories(input-gdal PRIVATE ${GDAL_INCLUDE_DIRS})
|
|
target_link_libraries(input-gdal PRIVATE
|
|
mapnik::mapnik
|
|
${GDAL_LIBRARIES}
|
|
)
|
|
set_target_properties(input-gdal PROPERTIES
|
|
OUTPUT_NAME "gdal"
|
|
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"
|
|
)
|
|
mapnik_install_plugin(input-gdal)
|