Skip to content

Commit 0139f80

Browse files
committed
Add vs2013_x64/install binaries.
1 parent 7ddda2f commit 0139f80

23 files changed

+993
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ depends/*.deb
1616
[Dd]ebug/
1717
[Rr]elease/
1818
x64/
19-
[Bb]in/
19+
# [Bb]in/
2020
[Oo]bj/
2121

2222
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets

build_vs2013_x64.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
rmdir /S /Q vs2013_x64
22
mkdir vs2013_x64 && cd vs2013_x64
3-
cmake .. -G "Visual Studio 12 2013 Win64" -DENABLE_OPENCL=OFF -DENABLE_OPENGL=OFF -DENABLE_CUDA=OFF
3+
cmake .. -G "Visual Studio 12 2013 Win64" -DENABLE_OPENCL=ON -DENABLE_OPENGL=OFF -DENABLE_CUDA=OFF
44
cmake --build . --config RelWithDebInfo --target install
182 KB
Binary file not shown.
186 KB
Binary file not shown.
425 KB
Binary file not shown.
467 KB
Binary file not shown.
885 KB
Binary file not shown.
93 KB
Binary file not shown.
561 KB
Binary file not shown.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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

Comments
 (0)