forked from bakercp/ofxKinectV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon_config.mk
More file actions
36 lines (31 loc) · 1.34 KB
/
addon_config.mk
File metadata and controls
36 lines (31 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
meta:
ADDON_NAME = ofxKinectV2
ADDON_DESCRIPTION = An addon for the new Kinect For Windows V2 sensor
ADDON_AUTHOR = Theo Watson
ADDON_TAGS = "kinect" "kinectv2" "libfreenect" "libfreenect2"
ADDON_URL = https://github.com/ofTheo/ofxKinectV2
osx:
ADDON_FRAMEWORKS = OpenCL VideoToolbox
linux64:
# linux only, any library that should be included in the project using
# pkg-config
ADDON_PKG_CONFIG_LIBRARIES = libusb-1.0 OpenCL
ADDON_LDFLAGS = -L/usr/local/lib/ -lfreenect2 -L/usr/local/cuda/lib64 -lcuda -lcudart
# when parsing the file system looking for include paths exclude this for all or
# a specific platform
#ADDON_INCLUDES_EXCLUDE = libs/libusb/%
linux:
# linux only, any library that should be included in the project using
# pkg-config
ADDON_PKG_CONFIG_LIBRARIES = libusb-1.0 OpenCL
# when parsing the file system looking for include paths exclude this for all or
# a specific platform
ADDON_INCLUDES_EXCLUDE = libs/libusb/%
linuxarmv7l:
# linux only, any library that should be included in the project using
# pkg-config
ADDON_PKG_CONFIG_LIBRARIES = freenect2 cuda-10.0 cudart-10.0 #libusb-1.0 OpenCL
#ADDON_LDFLAGS = -L/usr/local/lib/ -lfreenect2 -L/usr/local/cuda/lib64 -lcuda -lcudart
# when parsing the file system looking for include paths exclude this for all or
# a specific platform
#ADDON_INCLUDES_EXCLUDE = libs/libusb/%