7a7a8125a9
[CMake] remove obsolete variables and improve docs [CMake] remove proj env var
19 lines
597 B
CMake
19 lines
597 B
CMake
add_library(input-geojson MODULE
|
|
geojson_datasource.cpp
|
|
geojson_featureset.cpp
|
|
geojson_index_featureset.cpp
|
|
geojson_memory_index_featureset.cpp
|
|
)
|
|
target_link_libraries(input-geojson PRIVATE
|
|
mapnik::mapnik
|
|
mapnik::json
|
|
)
|
|
set_target_properties(input-geojson PROPERTIES
|
|
OUTPUT_NAME "geojson"
|
|
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-geojson)
|