|
| 1 | +/* |
| 2 | +* This file is part of the OpenKinect Project. http://www.openkinect.org |
| 3 | +* |
| 4 | +* Copyright (c) 2014 individual OpenKinect contributors. See the CONTRIB file |
| 5 | +* for details. |
| 6 | +* |
| 7 | +* This code is licensed to you under the terms of the Apache License, version |
| 8 | +* 2.0, or, at your option, the terms of the GNU General Public License, |
| 9 | +* version 2.0. See the APACHE20 and GPL2 files for the text of the licenses, |
| 10 | +* or the following URLs: |
| 11 | +* http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +* http://www.gnu.org/licenses/gpl-2.0.txt |
| 13 | +* |
| 14 | +* If you redistribute this file in source form, modified or unmodified, you |
| 15 | +* may: |
| 16 | +* 1) Leave this header intact and distribute it under the same terms, |
| 17 | +* accompanying it with the APACHE20 and GPL20 files, or |
| 18 | +* 2) Delete the Apache 2.0 clause and accompany it with the GPL2 file, or |
| 19 | +* 3) Delete the GPL v2 clause and accompany it with the APACHE20 file |
| 20 | +* In all cases you must keep the copyright notice intact and include a copy |
| 21 | +* of the CONTRIB file. |
| 22 | +* |
| 23 | +* Binary distributions must follow the binary distribution requirements of |
| 24 | +* either License. |
| 25 | +*/ |
| 26 | + |
| 27 | +#ifndef LIBFREENECT2_CONFIG_H |
| 28 | +#define LIBFREENECT2_CONFIG_H |
| 29 | + |
| 30 | +#define LIBFREENECT2_VERSION "0.2.0" |
| 31 | +#define LIBFREENECT2_API_VERSION ((0 << 16) | 2) |
| 32 | + |
| 33 | +#ifdef _MSC_VER |
| 34 | +#define LIBFREENECT2_PACK( __Declaration__ ) __pragma( pack(push, 1) ) __Declaration__ __pragma( pack(pop) ) |
| 35 | +#else |
| 36 | +#define LIBFREENECT2_PACK( __Declaration__ ) __Declaration__ __attribute__((__packed__)) |
| 37 | +#endif |
| 38 | + |
| 39 | +#include <libfreenect2/export.h> |
| 40 | +#define LIBFREENECT2_API LIBFREENECT2_EXPORT |
| 41 | + |
| 42 | +/* #undef LIBFREENECT2_WITH_OPENGL_SUPPORT */ |
| 43 | + |
| 44 | +#define LIBFREENECT2_WITH_OPENCL_SUPPORT |
| 45 | +/* #undef LIBFREENECT2_OPENCL_ICD_LOADER_IS_OLD */ |
| 46 | + |
| 47 | +/* #undef LIBFREENECT2_WITH_CUDA_SUPPORT */ |
| 48 | + |
| 49 | +/* #undef LIBFREENECT2_WITH_VT_SUPPORT */ |
| 50 | + |
| 51 | +/* #undef LIBFREENECT2_WITH_VAAPI_SUPPORT */ |
| 52 | + |
| 53 | +#define LIBFREENECT2_WITH_TURBOJPEG_SUPPORT |
| 54 | + |
| 55 | +/* #undef LIBFREENECT2_WITH_TEGRAJPEG_SUPPORT */ |
| 56 | +#define LIBFREENECT2_TEGRAJPEG_LIBRARY "TegraJPEG_LIBRARIES-NOTFOUND" |
| 57 | + |
| 58 | +/* #undef LIBFREENECT2_THREADING_STDLIB */ |
| 59 | + |
| 60 | +#define LIBFREENECT2_THREADING_TINYTHREAD |
| 61 | + |
| 62 | +/* #undef LIBFREENECT2_WITH_CXX11_SUPPORT */ |
| 63 | + |
| 64 | +/* #undef LIBFREENECT2_WITH_PROFILING */ |
| 65 | + |
| 66 | +#endif // LIBFREENECT2_CONFIG_H |
0 commit comments