36 lines
762 B
CMake
36 lines
762 B
CMake
set(_plugin_prefix "")
|
|
set(_plugin_suffix ".input")
|
|
|
|
if(USE_PLUGIN_INPUT_CSV)
|
|
add_subdirectory(csv)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_GDAL)
|
|
add_subdirectory(gdal)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_GEOBUF)
|
|
add_subdirectory(geobuf)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_GEOJSON)
|
|
add_subdirectory(geojson)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_OGR)
|
|
add_subdirectory(ogr)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_PGRASTER)
|
|
add_subdirectory(pgraster)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_POSTGIS)
|
|
add_subdirectory(postgis)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_RASTER)
|
|
add_subdirectory(raster)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_SHAPE)
|
|
add_subdirectory(shape)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_SQLITE)
|
|
add_subdirectory(sqlite)
|
|
endif()
|
|
if(USE_PLUGIN_INPUT_TOPOJSON)
|
|
add_subdirectory(topojson)
|
|
endif()
|