/* * pdal_features.hpp.in is used by cmake to generate pdal_features.hpp * * Do not edit pdal_features.hpp * */ #pragma once #include /* * version settings */ #define PDAL_VERSION_MAJOR 2 #define PDAL_VERSION_MINOR 5 #define PDAL_VERSION_PATCH 1 namespace pdal { const int pdalVersionMajor { 2 }; const int pdalVersionMinor { 5 }; const int pdalVersionPatch { 1 }; const std::string pdalVersion { "2.5.1" }; const std::string pdalSha { "c27d71ebc83cfc6000691125aecc5d9341c7cc68" }; } // namespace pdal #define PDAL_PLUGIN_INSTALL_PATH "/opt/conda/lib" /* * availability of 3rd-party libraries */ /* #undef PDAL_HAVE_HDF5 */ #define PDAL_HAVE_ZSTD #define PDAL_HAVE_ZLIB /* #undef PDAL_HAVE_LZMA */ #define PDAL_HAVE_LIBXML2 #define PDAL_LAS_START /* * Debug or Release build? */ #define PDAL_BUILD_TYPE "Release" /* * built pdal app as application bundle on OSX? */ /* #undef PDAL_APP_BUNDLE */