2020-11-21 11:34:45 +01:00
|
|
|
project(input-sqlite)
|
|
|
|
|
|
|
|
find_package(SQLite3 REQUIRED)
|
|
|
|
|
|
|
|
add_library(input-sqlite SHARED
|
|
|
|
sqlite_datasource.cpp
|
|
|
|
sqlite_featureset.cpp
|
|
|
|
)
|
|
|
|
add_library(mapnik::plugin::input::sqlite ALIAS input-sqlite)
|
|
|
|
|
|
|
|
target_link_libraries(input-sqlite PRIVATE
|
2021-03-18 15:35:55 +01:00
|
|
|
mapnik::core
|
2020-11-21 11:34:45 +01:00
|
|
|
mapnik::mapnik
|
|
|
|
SQLite::SQLite3
|
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(input-sqlite PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(input-sqlite PROPERTIES OUTPUT_NAME "sqlite")
|
|
|
|
set_target_properties(input-sqlite PROPERTIES SUFFIX ".input")
|
|
|
|
|
2020-11-21 11:40:55 +01:00
|
|
|
install(TARGETS input-sqlite
|
2020-11-22 22:01:33 +01:00
|
|
|
RUNTIME DESTINATION ${PLUGINS_INSTALL_DIR}
|
2020-11-21 11:34:45 +01:00
|
|
|
)
|