You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.2 KiB
66 lines
1.2 KiB
// OpenMVS version |
|
#define OpenMVS_MAJOR_VERSION 2 |
|
#define OpenMVS_MINOR_VERSION 3 |
|
#define OpenMVS_PATCH_VERSION 0 |
|
|
|
// OpenMVS compiled as static or dynamic libs |
|
/* #undef BUILD_SHARED_LIBS */ |
|
|
|
// Define to 1 if you have the <inttypes.h> header file |
|
#define HAVE_INTTYPES_H 1 |
|
|
|
// Define to 1 if exceptions are enabled |
|
#define _HAS_EXCEPTIONS 1 |
|
|
|
// Define to 1 if RTTI is enabled |
|
#define _HAS_RTTI 1 |
|
|
|
// OpenMP support |
|
#define _USE_OPENMP |
|
|
|
// BREAKPAD support |
|
/* #undef _USE_BREAKPAD */ |
|
|
|
// Boost support |
|
#define _USE_BOOST |
|
|
|
// Boost with Python support |
|
#define _USE_BOOST_PYTHON |
|
|
|
// Eigen Matrix & Linear Algebra Library |
|
#define _USE_EIGEN |
|
|
|
// CERES optimization library |
|
/* #undef _USE_CERES */ |
|
|
|
// JPEG codec |
|
#define _USE_JPG |
|
|
|
// PNG codec |
|
#define _USE_PNG |
|
|
|
// TIFF codec |
|
#define _USE_TIFF |
|
|
|
// OpenGL support |
|
#define _USE_OPENGL |
|
|
|
// OpenCL support |
|
/* #undef _USE_OPENCL */ |
|
/* #undef _USE_OPENCL_STATIC */ |
|
/* #undef _USE_OPENCL_SVM */ |
|
|
|
// NVidia Cuda Runtime API |
|
#define _USE_CUDA |
|
|
|
// Fast float to int support |
|
/* #undef _USE_FAST_FLOAT2INT */ |
|
|
|
// Fast INVSQRT support |
|
/* #undef _USE_FAST_INVSQRT */ |
|
|
|
// Fast CBRT support |
|
/* #undef _USE_FAST_CBRT */ |
|
|
|
// SSE support |
|
#define _USE_SSE
|
|
|