2020-11-21 11:34:45 +01:00
|
|
|
find_package(SQLite3 REQUIRED)
|
|
|
|
|
2022-02-02 17:20:29 +01:00
|
|
|
add_plugin_target(input-sqlite "sqlite")
|
2022-01-29 12:52:23 +01:00
|
|
|
target_sources(input-sqlite ${_plugin_visibility}
|
2020-11-21 11:34:45 +01:00
|
|
|
sqlite_datasource.cpp
|
|
|
|
sqlite_featureset.cpp
|
|
|
|
)
|
2022-01-29 12:52:23 +01:00
|
|
|
target_link_libraries(input-sqlite ${_plugin_visibility}
|
2022-08-17 17:35:25 +02:00
|
|
|
mapnik::mapnik
|
2020-11-21 11:34:45 +01:00
|
|
|
SQLite::SQLite3
|
|
|
|
)
|