forked from ocgears/omnifilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinding.gyp
45 lines (45 loc) · 1.3 KB
/
binding.gyp
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
37
38
39
40
41
42
43
44
45
{
"targets": [
{
"target_name": "matrix",
"sources": [ "matrix.cpp" ],
"include_dirs": ["<!(node -e \"require('nan')\")"],
"conditions": [
["OS=='mac'",
{
"defines": [
"__MACOSX_CORE__"
],
"architecture": "i386",
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES"
},
"link_settings": {
"libraries": [
"-framework",
"OpenCL" # this is how you use a framework on OSX
]
}
}
],
['OS=="linux"', {
'defines': [
'LINUX_DEFINE',
],
'link_settings': {
'libraries': [
'/opt/intel/opencl/lib64/libOpenCL.so'
]
},
'include_dirs': [
'/etc/OpenCL/vendors/',
'/opt/opencl-headers/include/CL',
'/opt/intel/opencl/',
'/opt/intel/opencl/lib64'
],
},
],
],
},
],
}