-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
27 lines (27 loc) · 856 Bytes
/
binding.gyp
File metadata and controls
27 lines (27 loc) · 856 Bytes
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
{
"targets": [
{
"target_name": "nodestreamer",
"cflags!": ["-fno-exceptions"],
"cflags_cc!": ["-fno-exceptions"],
"sources": [
"cpp/src/main.cpp",
"cpp/modules/media/converter.module.cpp",
"cpp/modules/media/converter.wrapper.cpp"
],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")",
"<!@(pkg-config gstreamer-1.0 --cflags-only-I | sed s/-I//g)"
],
"libraries": [
"<!@(pkg-config gstreamer-1.0 --libs)"
],
"dependencies": [
"<!@(node -p \"require('node-addon-api').gyp\")"
],
"defines":[
"NAPI_DISABLE_CPP_EXCEPTIONS"
]
}
]
}