Skip to content

Commit

Permalink
starting to add the DB writer, moved all into new plugin dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgerlek committed May 4, 2015
1 parent 985b9a2 commit 5d4ad59
Show file tree
Hide file tree
Showing 17 changed files with 1,246 additions and 352 deletions.
7 changes: 6 additions & 1 deletion CMakeLists.txt
Expand Up @@ -148,6 +148,10 @@ option(BUILD_PLUGIN_SQLITE "Choose if SQLite database support should be built" F
add_feature_info("SQLite plugin" BUILD_PLUGIN_SQLITE
"read/write SQLite objects")

option(BUILD_PLUGIN_RIALTO "Choose if Rialto (file or database) support should be built" FALSE)
add_feature_info("Rialto plugin" BUILD_PLUGIN_RIALTO
"read/write Rialto files and databases")

option(BUILD_PLUGIN_RIVLIB "Choose if RiVLib support should be built" FALSE)
add_feature_info("RiVLib plugin" BUILD_PLUGIN_RIVLIB
"read data in the RXP format")
Expand All @@ -165,11 +169,12 @@ include(CMakeDependentOption)

cmake_dependent_option(BUILD_PGPOINTCLOUD_TESTS "Choose if PostgreSQL PointCloud tests should be built" ON "BUILD_PLUGIN_PGPOINTCLOUD; WITH_TESTS" OFF)
cmake_dependent_option(BUILD_SQLITE_TESTS "Choose if SQLite tests should be built" ON "BUILD_PLUGIN_SQLITE; WITH_TESTS" OFF)
cmake_dependent_option(BUILD_RIALTO_TESTS "Choose if Rialto tests should be built" ON "BUILD_PLUGIN_RIALTO; WITH_TESTS" OFF)
cmake_dependent_option(BUILD_OCI_TESTS "Choose if OCI tests should be built" ON "BUILD_PLUGIN_OCI; WITH_TESTS" OFF)
cmake_dependent_option(BUILD_RIVLIB_TESTS "Choose if RiVLib tests should be built" ON "BUILD_PLUGIN_RIVLIB; WITH_TESTS" OFF)
cmake_dependent_option(BUILD_PIPELINE_TESTS "Choose if pipeline tests should be built" OFF "WITH_APPS; WITH_TESTS" OFF)

if(BUILD_PLUGIN_PGPOINTCLOUD OR BUILD_PLUGIN_OCI OR BUILD_PLUGIN_SQLITE)
if(BUILD_PLUGIN_PGPOINTCLOUD OR BUILD_PLUGIN_OCI OR BUILD_PLUGIN_SQLITE OR BUILD_PLUGIN_RIALTO)
include(${PDAL_CMAKE_DIR}/libxml2.cmake)
endif()
if(BUILD_PLUGIN_PYTHON)
Expand Down
1 change: 0 additions & 1 deletion io/CMakeLists.txt
Expand Up @@ -4,7 +4,6 @@ add_subdirectory(las)
add_subdirectory(null)
add_subdirectory(optech)
add_subdirectory(qfit)
add_subdirectory(rialto)
add_subdirectory(sbet)
add_subdirectory(text)
add_subdirectory(terrasolid)
Expand Down
10 changes: 0 additions & 10 deletions io/rialto/CMakeLists.txt

This file was deleted.

321 changes: 0 additions & 321 deletions io/rialto/RialtoWriter.cpp

This file was deleted.

3 changes: 3 additions & 0 deletions plugins/CMakeLists.txt
Expand Up @@ -58,3 +58,6 @@ if(BUILD_PLUGIN_SQLITE)
add_subdirectory(sqlite)
endif()

if(BUILD_PLUGIN_RIALTO)
add_subdirectory(rialto)
endif()

0 comments on commit 5d4ad59

Please sign in to comment.