Skip to content

Commit

Permalink
Merge pull request #738 from gadomski/postgres-off-by-default
Browse files Browse the repository at this point in the history
Disable pgpointcloud plugin by default
  • Loading branch information
hobu committed Feb 5, 2015
2 parents 91a2647 + 45c0a02 commit 1a02abb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Expand Up @@ -132,7 +132,8 @@ option(BUILD_PLUGIN_PCL "Choose if PCL support should be built" FALSE)
add_feature_info("PCL plugin" BUILD_PLUGIN_PCL
"provides PCL-based readers, writers, filters, and kernels")

option(BUILD_PLUGIN_PGPOINTCLOUD "Choose if PostgreSQL PointCloud support should be built" TRUE)
find_package(PostgreSQL QUIET)
option(BUILD_PLUGIN_PGPOINTCLOUD "Choose if PostgreSQL PointCloud support should be built" ${POSTGRESQL_FOUND})
add_feature_info("PostgreSQL PointCloud plugin" BUILD_PLUGIN_PGPOINTCLOUD
"read/write PostgreSQL PointCloud objects")

Expand Down

0 comments on commit 1a02abb

Please sign in to comment.