-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbinding.gyp
42 lines (42 loc) · 942 Bytes
/
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
{
"targets": [
{
"target_name": "Node_OMX",
"sources": [
"src/main.cpp",
"src/init.cpp",
"src/BUFFERHEADERTYPE.cpp",
"src/ParametersGet.cpp",
"src/ParametersSet.cpp",
"src/COMPONENTTYPE.cpp",
"src/CopyAsync.cpp",
"src/Graphics.cpp",
"src/GfxTexture.cpp",
"src/EglImage.cpp",
"src/GfxProgram.cpp",
"src/GfxShader.cpp"
],
"defines": [
"OMX",
"OMX_SKIP64BIT"
],
"include_dirs": [
"<!(node -e \"require('nan')\")",
"/opt/vc/include",
"/opt/vc/include/interface/vcos/pthreads",
"/opt/vc/include/interface/vmcs_host/linux"
],
"link_settings": {
"library_dirs": [
"/opt/vc/lib"
],
"libraries": [
"-lopenmaxil",
"-lbcm_host",
"-lvcos",
"-lpthread"
]
},
}
]
}